home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / phpMyAdmin / Documentation.txt < prev    next >
Text File  |  2005-05-05  |  140KB  |  2,419 lines

  1.    ______________________________________________________________________
  2.  
  3.    Top  -  Requirements  -  Introduction  -  Installation  -  Configuration
  4.    Transformations  -  FAQ  -  Developers  -  Credits  -  Translators
  5.    ______________________________________________________________________
  6.  
  7.                       phpMyAdmin 2.6.2-pl1 Documentation
  8.  
  9.      * SourceForge phpMyAdmin project page   [ http://www.phpmyadmin.net/ ] 
  10.      * Local documents:
  11.           + Version history: ChangeLog
  12.           + General notes: README
  13.           + License: LICENSE
  14.      * Documentation version: $Id: Documentation.html,v 2.123.2.3 2005/04/16        17:36:54 lem9 Exp $
  15.  
  16. Requirements
  17.  
  18.      * PHP
  19.           + You need PHP 4.1.0 or newer (*)
  20.           + If you want to display inline thumbnails of JPEGs with the original
  21.             aspect ratio, you also need GD2 support in PHP
  22.           + Starting with phpMyAdmin 2.6.1, MIME-based transformations that use
  23.             an external program need PHP 4.3.0 or newer
  24.      * MySQL 3.23.32 or newer (details);
  25.      * Not really a requirement but a strong suggestion: if you are using th       e "cookie" authentication method, having the mcrypt PHP extension on
  26.        your web server accelerates not only the login phase but every other
  27.        action that you do in phpMyAdmin.
  28.      * a web-browser (doh!).
  29.  
  30. Introduction
  31.  
  32.    phpMyAdmin can manage a whole MySQL server (needs a super-user) as well a   s a single database. To accomplish the latter you'll need a properly set    up MySQL user who can read/write only the desired database. It's up to   you to look up the appropriate part in the MySQL manual.
  33.    Currently phpMyAdmin can:
  34.      * create and drop databases
  35.      * create, copy, drop, rename and alter tables
  36.      * do table maintenance
  37.      * delete, edit and add fields
  38.      * execute any SQL-statement, even batch-queries
  39.      * manage keys on fields
  40.      * load text files into tables
  41.      * create (*) and read dumps of tables
  42.      * export (*) data to CSV, XML and Latex formats
  43.      * administer multiple servers
  44.      * manage MySQL users and privileges
  45.      * check referential integrity in MyISAM tables
  46.      * using Query-by-example (QBE), create complex queries automatically co       nnecting required tables
  47.      * create PDF graphics of your Database layout
  48.      * search globally in a database or a subset of it
  49.      * transform stored data into any format using a set of predefined funct       ions, like displaying BLOB-data as image or download-link or ...
  50.      * support InnoDB tables and foreign keys (see FAQ 3.6)
  51.      * support mysqli, the improved MySQL extension (see FAQ 1.17)
  52.      * communicate in 48 different languages
  53.  
  54.    (*)  phpMyAdmin can compress (Zip, GZip -RFC 1952- or Bzip2 formats) dump   s and CSV exports if you use PHP4 >= 4.0.4 with Zlib support (--with-zli   b) and/or Bzip2 support (--with-bz2).
  55.  
  56. Installation
  57.  
  58.    NOTE: phpMyAdmin does not apply any special security methods to the MySQL    database server. It is still the system administrator's job to grant pe   rmissions on the MySQL databases properly. phpMyAdmin's "Privileges" pag   e can be used for this.
  59.  
  60.    Warning for Mac users:if you are on a MacOS version before OS X, StuffIt   unstuffs with Mac formats.
  61.    So you'll have to resave as in BBEdit to Unix style ALL phpMyAdmin script   s before uploading them to your server, as PHP seems not to like Mac-sty   le end of lines character ("\r").
  62.  
  63.   Quick Install
  64.  
  65.     1. Untar or unzip the distribution (be sure to unzip the subdirectories)       : tar -xzvf phpMyAdmin_x.x.x.tar.gz in your webserver's document root.
  66.        If you don't have direct access to your document root, put the files in
  67.        a directory on your local machine, and, after step 3, transfer the
  68.        directory on your web server using, for example, ftp.
  69.     2. Ensure that all the scripts have the appropriate owner (if PHP is run       ning in safe mode, having some scripts with an owner different from the
  70.        owner of other scripts will be a problem). See FAQ 4.2 for suggestions.
  71.     3. Open the file config.inc.php in your favorite editor and change the v       alues for host, user, password and authentication mode to fit your
  72.        environment.  Here, "host" means the MySQL server. Also insert the
  73.        correct value for $cfg['PmaAbsoluteUri']. Have a look at Configuration
  74.        section  for  an  explanation  of all values. Please also read the
  75.        remaining  of  this  Installation  section  for  information about
  76.        authentication modes and the linked-tables infrastructure.
  77.     4. It is recommended that you protect the directory in which you install       ed phpMyAdmin (unless it's on a closed intranet, or you wish to use
  78.        HTTP  or  cookie authentication), for example with HTTP-AUTH (in a
  79.        .htaccess  file).  See  the  multi-user sub-section of the FAQ for
  80.        additional information, especially FAQ 4.4.
  81.     5. Open the file <www.your-host.com>/<your-install-dir>/index.php in you       r browser. phpMyAdmin should now display a welcome screen and your
  82.        databases, or a login dialog if using HTTP or cookie authentication
  83.        mode.
  84.  
  85.   Linked-tables infrastructure
  86.  
  87.    For a whole set of new features (bookmarks, comments, SQL-history, PDF-ge   neration, field contents transformation, etc.) you need to create a set   of special tables. Those tables can be located in your own database, or   in a central database for a multi-user installation (this database would    then be accessed by the controluser, so no other user should have right   s to it).
  88.    Please look at your scripts/ directory, where you should find a file call   ed create_tables.sql. (If you are using a Windows server, pay special at   tention to FAQ 1.23).
  89.    If your MySQL server's version is 4.1.2 or later, please use create_table   s_mysql_4_1_2+.sql instead, for a new installation.
  90.    If you already had this infrastructure and upgraded to MySQL 4.1.2 or lat   er, please use upgrade_tables_mysql_4_1_2+.sql.
  91.    You can use your phpMyAdmin to create the tables for you. Please be aware    that you may need special (administrator) privileges to create the data   base and tables, and that the script may need some tuning, depending on   the database name.
  92.    After having imported the create_tables.sql file, you should specify the   table names in your config.inc.php file. The directives used for that ca   n be found in the Configuration section. You will also need to have a co   ntroluser with the proper rights to those tables (see section Using auth   entication modes below).
  93.  
  94.   Upgrading from an older version
  95.  
  96.      * You can safely copy your older config.inc.php over a new one, if you       can live with default values for possible new parameters (you can check
  97.        release notes to see what new features were added). This compatibility
  98.        will stay for long time, current version supports importing config files
  99.        from 2.2 and maybe even older (nobody has tried that).
  100.  
  101.   Using authentication modes
  102.  
  103.      * HTTP and cookie authentication modes are recommended in a multi-user       environment where you want to give users access to their own database
  104.        and don't want them to play around with others.
  105.        Nevertheless be aware that MS Internet Explorer seems to be really buggy
  106.        about cookies, at least till version 6. And PHP 4.1.1 is also a bit
  107.        buggy in this area!
  108.        Even in a single-user environment, you might prefer to use HTTP or
  109.        cookie mode so that your user/password pair are not in clear in the
  110.        configuration file.
  111.      * HTTP and cookie authentication modes are more secure: the MySQL login        information does not need to be set in the phpMyAdmin configuration
  112.        file (except possibly for the controluser).
  113.        However, keep in mind that the password travels in plain text, unless
  114.        you are using the HTTPS protocol.
  115.        In cookie mode, the password is stored, encrypted with the blowfish
  116.        algorithm, in a temporary cookie.
  117.      * Note: starting with phpMyAdmin 2.6.1, configuring the controluser to       enable HTTP and cookie authentication applies only to MySQL servers
  118.        older than 4.1.2.
  119.        For 'HTTP' and 'cookie' modes, phpMyAdmin needs a controluser that has
  120.        only  the  SELECT  privilege on the mysql.user (all columns except
  121.        "Password"),  mysql.db (all columns), mysql.host (all columns) and
  122.        mysql.tables_priv (all columns except "Grantor" & "Timestamp") tables.
  123.        You must specify the details for the controluser in the config.inc.php
  124.        file       under      the      $cfg['Servers'][$i]['controluser']&
  125.        $cfg['Servers'][$i]['controlpass'] settings.
  126.        The following example assumes you want to use pma as the controluser and
  127.        pmapass as the controlpass, but this is only an example: use something
  128.        else in your file!
  129.        Of course you have to replace localhost by the webserver's host if it's
  130.        not the same as the MySQL server's one.
  131.  
  132. GRANT USAGE ON mysql.* TO 'pma'@'localhost' IDENTIFIED BY 'pmapass';
  133. GRANT SELECT (
  134.     Host, User, Select_priv, Insert_priv, Update_priv, Delete_priv,
  135.     Create_priv, Drop_priv, Reload_priv, Shutdown_priv, Process_priv,
  136.     File_priv, Grant_priv, References_priv, Index_priv, Alter_priv,
  137.     Show_db_priv, Super_priv, Create_tmp_table_priv, Lock_tables_priv,
  138.     Execute_priv, Repl_slave_priv, Repl_client_priv
  139.     ) ON mysql.user TO 'pma'@'localhost';
  140. GRANT SELECT ON mysql.db TO 'pma'@'localhost';
  141. GRANT SELECT ON mysql.host TO 'pma'@'localhost';
  142. GRANT SELECT (Host, Db, User, Table_name, Table_priv, Column_priv)
  143.     ON mysql.tables_priv TO 'pma'@'localhost';
  144.  
  145.        If you are using an old MySQL version (below 4.0.2), please replace the
  146.        first GRANT SELECT query by this one:
  147.  
  148. GRANT SELECT (
  149.     Host, User, Select_priv, Insert_priv, Update_priv, Delete_priv,
  150.     Create_priv, Drop_priv, Reload_priv, Shutdown_priv, Process_priv,
  151.     File_priv, Grant_priv, References_priv, Index_priv, Alter_priv
  152.     ) ON mysql.user TO 'pma'@'localhost';
  153.  
  154.        ... and if you want to use the many new relation and bookmark features:
  155.  
  156. GRANT SELECT, INSERT, UPDATE, DELETE ON <pma_db>.* TO 'pma'@'localhost';
  157.  
  158.        (this of course requires you to have a special DB for phpMyAdmin, the
  159.        contents will be explained later)
  160.        Of course, the above queries only work if your MySQL version supports
  161.        the GRANT command. This is the case since 3.22.11.
  162.      * Then each of the true users should be granted a set of privileges on       a set of particular databases. Normally you shouldn't give global
  163.        privileges to an ordinary user, unless you understand the impact of
  164.        those privileges (for example, you are creating a superuser).
  165.        For example, to grant the user real_user with all privileges on the
  166.        database user_base:
  167.           GRANT  ALL  PRIVILEGES  ON user_base.* TO 'real_user'@localhost
  168.        IDENTIFIED BY 'real_password';
  169.        What  the user may now do is controlled entirely by the MySQL user
  170.        management system.
  171.        With HTTP or cookie authentication mode, you don't need to fill the
  172.        user/password fields inside the $cfg['Servers'] array.
  173.  
  174.     'http' authentication mode
  175.  
  176.      * Was called 'advanced' in versions before 2.2.3.
  177.      * Introduced in 1.3.0, it uses Basic HTTP authentication method and all       ows you to login as any valid MySQL user.
  178.      * Is supported with PHP running as an Apache module. For IIS (ISAPI) su       pport using CGI PHP, see FAQ 1.32.
  179.      * See also FAQ 4.4 about not using the .htaccess mechanism along with '       http' authentication mode.
  180.  
  181.     'cookie' authentication mode
  182.  
  183.      * You can use this method as a replacement for the HTTP authentication       (for example, if you're running IIS).
  184.      * Obviously, the user must enable cookies in the browser.
  185.      * With this mode, the user can truly logout of phpMyAdmin and login bac       k with the same username.
  186.      * If you want to login to arbitrary server see $cfg['AllowArbitraryServ       er'] directive.
  187.      * See also the requirements section for a way to improve the interface       speed while using this mode.
  188.  
  189.     'config' authentication mode
  190.  
  191.      * This mode is the less secure one because it requires you to fill the        $cfg['Servers'][$i]['user'] and $cfg['Servers'][$i]['password'] fields.
  192.        But  you  don't  need  to  setup  a  "controluser" here: using the
  193.        $cfg['Servers'][$i]['only_db'] might be enough.
  194.      * In the ISP FAQ section, there is an entry explaining how to protect y       our configuration file.
  195.      * For additional security in this mode, you may wish to consider the Ho       st  authentication  $cfg['Servers'][$i]['AllowDeny']['order'] and
  196.        $cfg['Servers'][$i]['AllowDeny']['rules'] configuration directives.
  197.  
  198. Configuration
  199.  
  200.    Warning for Mac users: PHP seems not to like Mac end of lines character (   "\r"). So ensure you choose the option that allows to use the *nix end o   f line character ("\n") in your text editor before registering a script   you have modified.
  201.  
  202.    Configuration note: Almost all configurable data is placed in config.inc.   php. The parameters which relate to design (like colors) are placed in t   hemes/themename/layout.inc.php. You might also want to modify config.foo   ter.inc.php and config.header.inc.php files to add your site specific co   de to be included on start and end of each page.
  203.  
  204.    $cfg['PmaAbsoluteUri'] string
  205.           Sets  here the complete URL (with full path) to your phpMyAdmin
  206.           installation's directory. E.g.
  207.           http://www.your_web.net/path_to_your_phpMyAdmin_directory/.
  208.           Starting with version 2.3.0, it is advisable to try leaving this
  209.           blank. In most cases phpMyAdmin automatically detects the proper
  210.           setting. Additional details are in the configuration file. If you
  211.           leave it blank, see the notes for
  212.           $cfg['PmaAbsoluteUri_DisableWarning']; you probably want to change
  213.           that to TRUE.
  214.           Don't forget the slash at the end of your URL. The URL must contain
  215.           characters that are valid for a URL, and on some servers, the path is
  216.           case-sensitive.
  217.  
  218.    $cfg['PmaAbsoluteUri_DisableWarning'] boolean
  219.           By default, when you leave $cfg['PmaAbsoluteUri'] empty, and the
  220.           system detects your absolute URI automatically, we display a warning
  221.           to remind you. If you have tested the automatic detection, and it
  222.           works perfectly for your setup, then you can set this variable to
  223.           squelch the warning.
  224.  
  225.    $cfg['PmaNoRelation_DisableWarning'] boolean
  226.           Starting with version 2.3.0 phpMyAdmin offers a lot of features to
  227.           work with master / foreign - tables (see
  228.           $cfg['Servers'][$i]['pmadb']).
  229.           If you tried to set this up and it does not work for you, have a look
  230.           on the "Structure" page of one database where you would like to use
  231.           it. You will find a link that will analyze why those features have
  232.           been disabled.
  233.           If you do not want to use those features set this variable to TRUE to
  234.           stop this message from appearing.
  235.  
  236.    $cfg['blowfish_secret'] string
  237.           Starting with version 2.5.2, the 'cookie' auth_type uses blowfish
  238.           algorithm to encrypt the password.
  239.           If  you  are  using the 'cookie' auth_type, enter here a random
  240.           passphrase of your choice. It will be used internally by the blowfish
  241.           algorithm: you won't be prompted for this passphrase. The maximum
  242.           number of characters for this parameter seems to be 46.
  243.  
  244.    $cfg['Servers'] array
  245.           Since  version 1.4.2, phpMyAdmin supports the administration of
  246.           multiple MySQL servers. Therefore, a $cfg['Servers']-array has been
  247.           added which contains the login information for the different servers.
  248.           The first $cfg['Servers'][$i]['host'] contains the hostname of the
  249.           first server, the second $cfg['Servers'][$i]['host'] the hostname of
  250.           the second server, etc. If you have only one server to administer,
  251.           simply leave free the hostname of the other $cfg['Server']-entries.
  252.  
  253.    $cfg['Servers'][$i]['host'] string
  254.           The  hostname  or  IP  address of your $i-th MySQL-server. E.g.
  255.           localhost.
  256.  
  257.    $cfg['Servers'][$i]['port'] string
  258.           The port-number of your $i-th MySQL-server. Default is 3306 (leave
  259.           blank). If you use "localhost" as the hostname, MySQL ignores this
  260.           port number and connects with the socket, so if you want to connect
  261.           to a port different from the default port, use "127.0.0.1" or the
  262.           real hostname in $cfg['Servers'][$i]['host'].
  263.  
  264.    $cfg['Servers'][$i]['socket'] string
  265.           The path to the socket to use. Leave blank for default.
  266.           To use the socket feature you must run PHP 3.0.10 or more.
  267.  
  268.    $cfg['Servers'][$i]['connect_type'] string
  269.           What type connection to use with the MySQL server. Your options are
  270.           'socket' & 'tcp'. It defaults to 'tcp' as that is nearly guaranteed
  271.           to be available on all MySQL servers, while sockets are not supported
  272.           on some platforms.
  273.           To use the socket mode, your MySQL server must be on the same machine
  274.           as the Web server.
  275.  
  276.    $cfg['Servers'][$i]['extension'] string
  277.           What php MySQL extension to use for the connection. Valid options
  278.           are:
  279.           mysql :  The classic MySQL extension. This is the recommended and
  280.           default method at this time.
  281.           mysqli :   The  improved MySQL extension. This extension became
  282.           available with php 5.0.0 and is the recommended way to connect to a
  283.           server running MySQL 4.1.x.
  284.           Note: phpMyAdmin's MySQL 4.1 support is experimental!
  285.  
  286.    $cfg['Servers'][$i]['compress'] boolean
  287.           Whether to use a compressed protocol for the MySQL server connection
  288.           or not (experimental).
  289.           This feature requires PHP >= 4.3.0.
  290.  
  291.    $cfg['Servers'][$i]['controluser'] string
  292.           $cfg['Servers'][$i]['controlpass'] string
  293.           Note: starting with phpMyAdmin 2.6.1, configuring the controluser to
  294.           enable HTTP and cookie authentication applies only to MySQL servers
  295.           older than 4.1.2.
  296.           This  special  account is used for 2 distinct purposes: to make
  297.           possible all relational features (see $cfg['Servers'][$i]['pmadb'])
  298.           and, for a MySQL server older than 4.1.2, to enable a multi-user
  299.           installation (http or cookie authentication mode).
  300.           When  using  HTTP  or  cookie authentication modes (or 'config'
  301.           authentication mode since phpMyAdmin 2.2.1), you need to supply the
  302.           details  of  a  MySQL  account that has SELECT privilege on the
  303.           mysql.user (all columns except "Password"), mysql.db (all columns) &
  304.           mysql.tables_priv  (all columns except "Grantor" & "Timestamp")
  305.           tables. This account is used to check what databases the user will
  306.           see at login.
  307.           Please see the install section on "Using authentication modes" for
  308.           more information.
  309.           Note that if you try login to phpMyAdmin with this "controluser", you
  310.           could get some errors, depending the exact privileges you gave to the
  311.           "controluser". phpMyAdmin does not support a direct login with the
  312.           "controluser".
  313.           In   phpMyAdmin   versions  before  2.2.5,  those  were  called
  314.           "stduser/stdpass".
  315.  
  316.    $cfg['Servers'][$i]['auth_type'] string ['http'|'cookie'|'config']
  317.           Whether config or cookie or http authentication should be used for
  318.           this server.
  319.  
  320.           + 'config' authentication ($auth_type = 'config') is the plain old
  321.             way: username and password are stored in config.inc.php.
  322.           + 'cookie' authentication mode ($auth_type = 'cookie') as introduced
  323.             in 2.2.3 allows you to log in as any valid MySQL user with the help
  324.             of cookies. Log name and password are stored in cookies during the
  325.             session and password is deleted when it ends. This can also allow
  326.             you to login in arbitrary server if $cfg['AllowArbitraryServer']
  327.             enabled.
  328.           + 'http' authentication (was called 'advanced' in older versions)
  329.             ($auth_type = 'http') as introduced in 1.3.0 allows you to log in
  330.             as any valid MySQL user via HTTP-Auth.
  331.  
  332.           Please see the install section on "Using authentication modes" for
  333.           more information.
  334.  
  335.    $cfg['Servers'][$i]['user'] string
  336.           $cfg['Servers'][$i]['password'] string
  337.           The user/password-pair which phpMyAdmin will use to connect to this
  338.           MySQL-server. This user/password pair is not needed when HTTP or
  339.           cookie authentication is used, and should be empty.
  340.  
  341.    $cfg['Servers'][$i]['only_db'] string or array
  342.           If  set  to a (an array of) database name(s), only this (these)
  343.           database(s)  will be shown to the user. Since phpMyAdmin 2.2.1,
  344.           this/these database(s) name(s) may contain MySQL wildcards characters
  345.           ("_"  and  "%"):  if you want to use literal instances of these
  346.           characters, escape them (I.E. use 'my\_db' and not 'my_db').
  347.           This setting is an efficient way to lower the server load since the
  348.           latter does not need to send MySQL requests to build the available
  349.           database list. But it does not replace the privileges rules of the
  350.           MySQL database server. If set, it just means only these databases
  351.           will be displayed but not that all other databases can't be used.
  352.           An    example    of    using    more    that    one   database:
  353.           $cfg['Servers'][$i]['only_db'] = array('db1', 'db2');
  354.           As of phpMyAdmin 2.5.5 the order inside the array is used for sorting
  355.           the databases in the left frame, so that you can individually arrange
  356.           your databases.
  357.           If you want to have certain databases at the top, but don't care
  358.           about the others, you do not need to specify all other databases.
  359.           Use: $cfg['Servers'][$i]['only_db'] = array('db3', 'db4', '*');
  360.           instead to tell phpMyAdmin that it should display db3 and db4 on top,
  361.           and the rest in alphabetic order.
  362.  
  363.    $cfg['Servers'][$i]['verbose'] string
  364.           Only useful when using phpMyAdmin with multiple server entries. If
  365.           set, this string will be displayed instead of the hostname in the
  366.           pull-down menu on the main page. This can be useful if you want to
  367.           show only certain databases on your system, for example.
  368.  
  369.    $cfg['Servers'][$i]['pmadb'] string
  370.           The name of the database containing the linked-tables infrastructure.
  371.           See the Linked-tables infrastructure section in this document to see
  372.           the benefits of this infrastructure, and for a quick way of creating
  373.           this database and the needed tables.
  374.           If you are the only user of this phpMyAdmin installation, you can use
  375.           your current database to store those special tables; in this case,
  376.           just put your current database name in $cfg['Servers'][$i]['pmadb'].
  377.           For a multi-user installation, set this parameter to the name of your
  378.           central database containing the linked-tables infrastructure.
  379.  
  380.    $cfg['Servers'][$i]['bookmarktable'] string
  381.           Since release 2.2.0 phpMyAdmin allows to bookmark queries. This can
  382.           be useful for queries you often run.
  383.           To allow the usage of this functionality:
  384.  
  385.           + set up pmadb and the linked-tables infrastructure
  386.           + enter the table name in $cfg['Servers'][$i]['bookmarktable']
  387.  
  388.    $cfg['Servers'][$i]['relation'] string
  389.           Since release 2.2.4 you can describe, in a special 'relation' table,
  390.           which field is a key in another table (a foreign key). phpMyAdmin
  391.           currently uses this to
  392.  
  393.           + make clickable, when you browse the master table, the data values
  394.             that point to the foreign table;
  395.           + display in an optional tool-tip the "display field" when browsing
  396.             the master table, if you move the mouse to a column containing a
  397.             foreign key (use also the 'table_info' table);
  398.             (see FAQ 6.7)
  399.           + in edit/insert mode, display a drop-down list of possible foreign
  400.             keys (key value and "display field" are shown)
  401.             (see FAQ 6.21)
  402.           + display links on the table properties page, to check referential
  403.             integrity (display missing foreign keys) for each described key;
  404.           + in query-by-example, create automatic joins (see FAQ 6.6)
  405.           + enable you to get a PDF schema of your database (also uses the
  406.             table_coords table).
  407.  
  408.           The keys can be numeric or character.
  409.           To allow the usage of this functionality:
  410.  
  411.           + set up pmadb and the linked-tables infrastructure
  412.           + put the relation table name in $cfg['Servers'][$i]['relation']
  413.           + now as normal user open phpMyAdmin and for each one of your tables
  414.             where you want to use this feature, click "Structure/Relation
  415.             view/" and choose foreign fields.
  416.  
  417.           Please note that in the current version, master_db must be the same
  418.           as foreign_db. Those fields have been put in future development of
  419.           the cross-db relations.
  420.  
  421.    $cfg['Servers'][$i]['table_info'] string
  422.           Since release 2.3.0 you can describe, in a special 'table_info'
  423.           table, which field is to be displayed as a tool-tip when moving the
  424.           cursor over the corresponding key.
  425.           This configuration variable will hold the name of this special table.
  426.           To allow the usage of this functionality:
  427.  
  428.           + set up pmadb and the linked-tables infrastructure
  429.           + put the table name in $cfg['Servers'][$i]['table_info']
  430.           + then for each table where you want to use this feature, click
  431.             "Structure/Relation view/Choose field to display" to choose the
  432.             field.
  433.  
  434.           Usage tip: Display field.
  435.  
  436.    $cfg['Servers'][$i]['table_coords'] string
  437.           $cfg['Servers'][$i]['pdf_pages'] string
  438.           Since release 2.3.0 you can have phpMyAdmin create PDF pages showing
  439.           the relations between your tables. To do this it needs two tables
  440.           "pdf_pages" (storing information about the available PDF pages) and
  441.           "table_coords" (storing coordinates where each table will be placed
  442.           on a PDF schema output).
  443.           You must be using the "relation" feature.
  444.           To allow the usage of this functionality:
  445.  
  446.           + set up pmadb and the linked-tables infrastructure
  447.           + put the correct table names in $cfg['Servers'][$i]['table_coords']
  448.             and $cfg['Servers'][$i]['pdf_pages']
  449.  
  450.           Usage tips: PDF output.
  451.  
  452.    $cfg['Servers'][$i]['column_info'] string
  453.           Since release 2.3.0 you can store comments to describe each column
  454.           for each table. These will then be shown on the "printview".
  455.           Starting with release 2.5.0, comments are consequently used on the
  456.           table property pages and table browse view, showing up as tool-tips
  457.           above the column name (properties page) or embedded within the header
  458.           of table in browse view. They can also be shown in a table dump.
  459.           Please see the relevant configuration directives later on.
  460.           Also new in release 2.5.0 is a MIME-transformation system which is
  461.           also based on the following table structure. See Transformations for
  462.           further information. To use the MIME-transformation system, your
  463.           column_info  table has to have the three new fields 'mimetype',
  464.           'transformation', 'transformation_options'.
  465.           To allow the usage of this functionality:
  466.  
  467.           + set up pmadb and the linked-tables infrastructure
  468.           + put the table name in $cfg['Servers'][$i]['column_info']
  469.           + to update your PRE-2.5.0 Column_comments Table use this:
  470.                  ALTER TABLE `pma_column_comments`
  471.                    ADD `mimetype` VARCHAR( 255 ) NOT NULL ,
  472.                    ADD `transformation` VARCHAR( 255 ) NOT NULL ,
  473.                    ADD `transformation_options` VARCHAR( 255 ) NOT NULL ;
  474.             and remember that the Variable in config.inc.php has been renamed
  475.             from
  476.             $cfg['Servers'][$i]['column_comments']                     to
  477.             $cfg['Servers'][$i]['column_info']
  478.  
  479.    $cfg['Servers'][$i]['history'] string
  480.           Since release 2.5.0 you can store your SQL history, which means all
  481.           queries you entered manually into the phpMyAdmin interface. If you
  482.           don't  want  to  use  a  table-  based history, you can use the
  483.           JavaScript-based history. Using that, all your history items are
  484.           deleted when closing the window.
  485.           Using $cfg['QueryHistoryMax'] you can specify an amount of history
  486.           items you want to have on hold. On every login, this list gets cut to
  487.           the maximum amount.
  488.           The query history is only available if you use the JavaScript-based
  489.           query window, see $cfg['QueryFrame'].
  490.           To allow the usage of this functionality:
  491.  
  492.           + set up pmadb and the linked-tables infrastructure
  493.           + put the table name in $cfg['Servers'][$i]['history']
  494.  
  495.    $cfg['Servers'][$i]['verbose_check'] boolean
  496.           Because release 2.5.0 introduced the new MIME-transformation support,
  497.           the column_info table got enhanced with three new fields. If the
  498.           above variable is set to TRUE (default) phpMyAdmin will check if you
  499.           have the latest table structure available. If not, it will emit a
  500.           warning to the superuser.
  501.           You can disable this checking behavior by setting the variable to
  502.           false, which should offer a performance increase.
  503.           Recommended to set to FALSE, when you are sure, your table structure
  504.           is up to date.
  505.  
  506.    $cfg['Servers'][$i]['AllowRoot'] boolean
  507.           Whether to allow root access, This is just simplification of rules
  508.           below.
  509.  
  510.    $cfg['Servers'][$i]['AllowDeny']['order'] string
  511.           If your rule order is empty, then IP authentication is disabled.
  512.           If your rule order is set to 'deny,allow' then the system applies all
  513.           deny rules followed by allow rules. Access is allowed by default. Any
  514.           client which does not match a Deny command or does match an Allow
  515.           command will be allowed access to the server.
  516.           If your rule order is set to 'allow,deny' then the system applies all
  517.           allow rules followed by deny rules. Access is denied by default. Any
  518.           client which does not match an Allow directive or does match a Deny
  519.           directive will be denied access to the server.
  520.           If  your rule order is set to 'explicit', the authentication is
  521.           performed in a similar fashion to rule order 'deny,allow', with the
  522.           added restriction that your host/username combination must be listed
  523.           in the allow rules, and not listed in the deny rules. This is the
  524.           most secure means of using Allow/Deny rules, and was available in
  525.           Apache by specifying allow and deny rules without setting any order.
  526.  
  527.    $cfg['Servers'][$i]['AllowDeny']['rules'] array of strings
  528.           The general format for the rules is as such:
  529.                 <'allow' | 'deny'> <username> [from] <ipmask>
  530.           If you wish to match all users, it is possible to use a '%' as a
  531.           wildcard in the username field.
  532.           There are a few shortcuts you can use in the ipmask field as well:
  533.                'all' -> 0.0.0.0/0
  534.                'localhost' -> 127.0.0.1/8
  535.           Having an empty rule list is equivalent to either using 'allow % from
  536.           all' if your rule order is set to 'deny,allow' or 'deny % from all'
  537.           if your rule order is set to 'allow,deny' or 'explicit'.
  538.           For the IP matching system, the following work:
  539.           xxx.xxx.xxx.xxx (an exact IP address)
  540.           xxx.xxx.xxx.[yyy-zzz] (an IP address range)
  541.           xxx.xxx.xxx.xxx/nn (CIDR, Classless Inter-Domain Routing type IP
  542.           addresses)
  543.           But the following does not work:
  544.           xxx.xxx.xxx.xx[yyy-zzz] (partial IP address range)
  545.  
  546.    $cfg['ServerDefault'] integer
  547.           If  you  have  more  than  one  server  configured, you can set
  548.           $cfg['ServerDefault'] to any one of them to autoconnect to that
  549.           server when phpMyAdmin is started, or set it to 0 to be given a list
  550.           of servers without logging in.
  551.           If you have only one server configured, $cfg['ServerDefault'] MUST be
  552.           set to that server.
  553.  
  554.    $cfg['OBGzip'] string/boolean
  555.           Defines whether to use GZip output buffering for increased speed in
  556.           HTTP transfers.
  557.           Set  to  true/false  for enabling/disabling. When set to 'auto'
  558.           (string),  phpMyAdmin tries to enable output buffering and will
  559.           automatically disable it, if your browser has some problems with
  560.           buffering. IE6 with a certain patch is known to cause data corruption
  561.           having enabled buffering.
  562.  
  563.    $cfg['PersistentConnections'] boolean
  564.           Whether persistent connections should be used or not (mysql_connect
  565.           or mysql_pconnect).
  566.  
  567.    $cfg['ExecTimeLimit'] integer [number of seconds]
  568.           Set the number of seconds a script is allowed to run. If seconds is
  569.           set to zero, no time limit is imposed.
  570.           This setting is used while importing/exporting dump files but has no
  571.           effect when PHP is running in safe mode.
  572.  
  573.    $cfg['SkipLockedTables'] boolean
  574.           Mark used tables and make it possible to show databases with locked
  575.           tables (since 3.23.30).
  576.  
  577.    $cfg['ShowSQL'] boolean
  578.           Defines  whether  SQL-queries generated by phpMyAdmin should be
  579.           displayed or not.
  580.  
  581.    $cfg['AllowUserDropDatabase'] boolean
  582.           Defines whether normal users (non-administrator) are allowed to
  583.           delete their own database or not. If set as FALSE, the link "Drop
  584.           Database" will not be shown, and even a "DROP DATABASE mydatabase"
  585.           will be rejected. Quite practical for ISP's with many customers.
  586.  
  587.    $cfg['Confirm'] boolean
  588.           Whether a warning ("Are your really sure...") should be displayed
  589.           when you're about to lose data.
  590.  
  591.    $cfg['LoginCookieRecall'] boolean
  592.           Define whether the previous login should be recalled or not in cookie
  593.           authentication mode.
  594.  
  595.    $cfg['UseDbSearch'] boolean
  596.           Define whether the "search string inside database" is enabled or not.
  597.  
  598.    $cfg['IgnoreMultiSubmitErrors'] boolean
  599.           Define whether phpMyAdmin will continue executing a multi-query
  600.           statement if one of the queries fails. Default is to abort execution.
  601.  
  602.    $cfg['VerboseMultiSubmit'] boolean
  603.           Define whether phpMyAdmin will output the results of each query of a
  604.           multi-query  statement  embedded  into the SQL output as inline
  605.           comments. Defaults to TRUE.
  606.  
  607.    $cfg['AllowArbitraryServer'] boolean
  608.           If enabled allows you to login to arbitrary server using cookie auth.
  609.           NOTE: Please use this carefully, as this may allow to access MySQL
  610.           servers behind firewall where your http server is placed.
  611.  
  612.    $cfg['LeftFrameLight'] boolean
  613.           Defines whether to use select-based menu and display only the current
  614.           tables in the left frame (smaller page). Only in Non-Lightmode you
  615.           can   use   the   feature   to  display  nested  folders  using
  616.           $cfg['LeftFrameTableSeparator']
  617.  
  618.    $cfg['LeftFrameTableSeparator'] string
  619.           Defines a string to be used to nest table spaces. Defaults to '__'.
  620.           This means if you have tables like 'first__second__third' this will
  621.           be shown as a three-level hierarchie like: first > second > third. If
  622.           set to FALSE or empty, the feature is disabled. NOTE: You shall not
  623.           use this Separator in a table name at the beginning or end of a table
  624.           name, or multiple times after another without any other characters in
  625.           between.
  626.  
  627.    $cfg['LeftFrameTableLevel'] string
  628.           Defines how many sublevels should be displayed when splitting up
  629.           tables by the above Separator.
  630.  
  631.    $cfg['ShowTooltip'] boolean
  632.           Defines whether to display table comment as tool-tip in left frame or
  633.           not.
  634.  
  635.    $cfg['ShowTooltipAliasDB'] boolean
  636.           If tool-tips are enabled and a DB comment is set, this will flip the
  637.           comment and the real name. That means, if you have a table called
  638.           'user0001' and add the comment 'MyName' on it, you will see the name
  639.           'MyName' used consequently in the left frame and the tool-tip shows
  640.           the real name of the DB.
  641.  
  642.    $cfg['ShowTooltipAliasTB'] boolean/string
  643.           Same as $cfg['ShowTooltipAliasDB'], except this works for table
  644.           names. When setting this to 'nested', the Alias of the Tablename is
  645.           only   used   to   split/nest   the  tables  according  to  the
  646.           $cfg['LeftFrameTableSeparator'] directive. So only the folder is
  647.           called like the Alias, the tablename itself stays the real tablename.
  648.  
  649.    $cfg['LeftDisplayLogo'] boolean
  650.           Defines whether to display the phpMyAdmin logo at the top of the left
  651.           frame or not. Defaults to TRUE.
  652.  
  653.    $cfg['LeftDisplayServers'] boolean
  654.           Defines whether to display a server choice at the top of the left
  655.           frame or not. Defaults to FALSE.
  656.  
  657.    $cfg['DisplayServersList'] boolean
  658.           Defines whether to display this server choice as links instead of in
  659.           a drop-down. Defaults to FALSE (drop-down).
  660.  
  661.    $cfg['ShowStats'] boolean
  662.           Defines whether to display space usage and statistics about databases
  663.           and tables or not.
  664.           Note that statistics requires at least MySQL 3.23.3 and that, at this
  665.           date, MySQL doesn't return such information for Berkeley DB tables.
  666.  
  667.    $cfg['ShowMysqlInfo'] boolean
  668.           $cfg['ShowMysqlVars'] boolean
  669.           $cfg['ShowPhpInfo'] boolean
  670.           $cfg['ShowChgPassword'] boolean
  671.           Defines whether to display the "MySQL runtime information", "MySQL
  672.           system variables", "PHP information" and "Change password " links or
  673.           not for simple users at the starting main (right) frame. This setting
  674.           does not check MySQL commands entered directly.
  675.           Please note that to block the usage of phpinfo() in scripts, you have
  676.           to put this in your php.ini:
  677.               disable_functions = phpinfo()
  678.           Also note that enabling the "Change password " link has no effect
  679.           with "config" authentication mode: because of the hard coded password
  680.           value in the configuration file, end users can't be allowed to change
  681.           their passwords.
  682.  
  683.    $cfg['SuggestDBName'] boolean
  684.           Defines whether to suggest a database name on the "Create Database"
  685.           form or to keep the textfield empty.
  686.  
  687.    $cfg['ShowBlob'] boolean
  688.           Defines whether BLOB fields are shown when browsing a table's content
  689.           or not.
  690.  
  691.    $cfg['NavigationBarIconic'] boolean
  692.           Defines whether navigation bar buttons contain text or symbols only.
  693.  
  694.    $cfg['ShowAll'] boolean
  695.           Defines whether an user should be displayed a "show all (records)"
  696.           button in browse mode or not.
  697.  
  698.    $cfg['MaxRows'] integer
  699.           Number of rows displayed when browsing a result set. If the result
  700.           set contains more rows, Previous/Next links will be shown.
  701.  
  702.    $cfg['Order'] string [DESC|ASC|SMART]
  703.           Defines whether fields are displayed in ascending (ASC) order, in
  704.           descending  (DESC)  order  or in a "smart" (SMART) order - I.E.
  705.           descending order for fields of type TIME, DATE, DATETIME & TIMESTAMP,
  706.           ascending order else- by default.
  707.  
  708.    $cfg['ProtectBinary'] boolean or string
  709.           Defines whether BLOB or BINARY fields are protected from edition when
  710.           browsing a table's content or not. Valid values are:
  711.           - FALSE to allow edition of all fields;
  712.           - blob to allow edition of all fields except BLOBS;
  713.           - all to disallow edition of all BINARY or BLOB fields.
  714.  
  715.    $cfg['ShowFunctionFields'] boolean
  716.           Defines whether MySQL functions fields should be displayed or not in
  717.           edit/insert mode.
  718.  
  719.    $cfg['CharEditing'] string
  720.           Defines which type of editing controls should be used for CHAR and
  721.           VARCHAR fields. Possible values are:
  722.  
  723.           + input - this allows to limit size of text to size of field in
  724.             MySQL, but has problems with newlines in fields
  725.           + textarea - no problems with newlines in fields, but also no length
  726.             limitations
  727.  
  728.           Default is old behavior so input.
  729.  
  730.    $cfg['ZipDump'] boolean
  731.           $cfg['GZipDump'] boolean
  732.           $cfg['BZipDump'] boolean
  733.           Defines whether to allow the use of zip/GZip/BZip2 compression when
  734.           creating a dump file or not.
  735.  
  736.    $cfg['CompressOnFly'] boolean
  737.           Defines  whether to allow on the fly compression for GZip/BZip2
  738.           compressed exports. This doesn't affect smaller dumps and allows to
  739.           create larger dumps, that won't fit otherwise in memory due to php
  740.           memory limit. Produced files contain more GZip/BZip2 headers, but all
  741.           normal programs handle this correctly.
  742.  
  743.    $cfg['LightTabs'] string
  744.           If set to True, do use less graphically intense tabs on the top of
  745.           the mainframe.
  746.  
  747.    $cfg['PropertiesIconic'] string
  748.           If set to True, will display icons instead of text for db and table
  749.           properties links (like 'Browse', 'Select', 'Insert', ...).
  750.           Can be set to 'both' if you want icons AND text.
  751.           When set to False, will only show text.
  752.  
  753.    $cfg['PropertiesNumColumns'] integer
  754.           How  many columns will be utilized to display the tables on the
  755.           database property view? Default is 1 column. When setting this to a
  756.           value larger than 1, the type of the database will be omitted for
  757.           more display space.
  758.  
  759.    $cfg['DefaultTabServer'] string
  760.           Defines the tab displayed by default on server view. Possible values:
  761.           "main.php"     (recommended     for     multi-user     setups),
  762.           "server_databases.php","server_status.php","server_variables.php",
  763.           "server_privileges.php" or "server_processlist.php".
  764.  
  765.    $cfg['DefaultTabDatabase'] string
  766.           Defines the tab displayed by default on database view. Possible
  767.           values:    "db_details_structure.php",    "db_details.php"   or
  768.           "db_search.php".
  769.  
  770.    $cfg['DefaultTabTable'] string
  771.           Defines the tab displayed by default on table view. Possible values:
  772.           "tbl_properties_structure.php",           "tbl_properties.php",
  773.           "tbl_select.php" or "tbl_change.php".
  774.  
  775.    $cfg['MySQLManualBase'] string
  776.           If  set to an URL which points to the MySQL documentation (type
  777.           depends on $cfg['MySQLManualType']), appropriate help links are
  778.           generated.
  779.           See MySQL Documentation page for more information about MySQL manuals
  780.           and their types.
  781.  
  782.    $cfg['MySQLManualType'] string
  783.           Type of MySQL documentation:
  784.  
  785.           + old - old style used in phpMyAdmin 2.3.0 and earlier
  786.           + searchable - "Searchable, with user comments"
  787.           + chapters - "HTML, one page per chapter"
  788.           + big - "HTML, all on one page"
  789.           + none - do not show documentation links
  790.  
  791.    $cfg['DefaultLang'] string
  792.           Defines  the default language to use, if not browser-defined or
  793.           user-defined.
  794.           See the select_lang.lib.php script to know the valid values for this
  795.           setting.
  796.  
  797.    $cfg['Lang'] string
  798.           Force:  always  use  this  language  (must  be  defined  in the
  799.           select_lang.lib.php script).
  800.  
  801.    $cfg['DefaultCharset'] string
  802.           Default character set to use for recoding of MySQL queries. This must
  803.           be  enabled and it's described by $cfg['AllowAnywhereRecoding']
  804.           option.
  805.           You   can   give   here   any   character   set   which  is  in
  806.           $cfg['AvailableCharsets'] array and this is just default choice, user
  807.           can select any of them.
  808.  
  809.    $cfg['AllowAnywhereRecoding'] boolean
  810.           Allow character set recoding of MySQL queries. You need recode or
  811.           iconv support (compiled in or module) in PHP to allow MySQL queries
  812.           recoding and used language file must have it enabled (by default only
  813.           these which are in Unicode, just to avoid losing some characters).
  814.  
  815.    $cfg['RecodingEngine'] string
  816.           You can select here which functions will be used for character set
  817.           conversion. Possible values are:
  818.  
  819.           + auto - automatically use available one (first is tested iconv, then
  820.             recode)
  821.           + iconv - use iconv or libiconv functions
  822.           + recode - use recode_string function
  823.  
  824.           Default is auto.
  825.  
  826.    $cfg['IconvExtraParams'] string
  827.           Specify some parameters for iconv used in charset conversion. See
  828.           iconv documentation for details.
  829.  
  830.    $cfg['AvailableCharsets'] array
  831.           Available character sets for MySQL conversion. You can add your own
  832.           (any of supported by recode/iconv) or remove these which you don't
  833.           use. Character sets will be shown in same order as here listed, so if
  834.           you frequently use some of these move them to the top.
  835.  
  836.    $cfg['GD2Available'] string
  837.           Specifies whether GD >= 2 is available. If yes it can be used for
  838.           MIME transformations.
  839.           Possible values are:
  840.  
  841.           + auto - automatically detect, this is a bit expensive operation for
  842.             php < 4.3.0 so it is preferred to change this according to your
  843.             server real possibilities
  844.           + yes - GD 2 functions can be used
  845.           + no - GD 2 function cannot be used
  846.  
  847.           Default is auto.
  848.  
  849.    $cfg['LeftWidth'] integer
  850.           Left frame width in pixel. See themes/themename/layout.inc.php.
  851.  
  852.    $cfg['LeftBgColor'] string [HTML color]
  853.           $cfg['RightBgColor'] string [HTML color]
  854.           The  background  colors  (HTML)  used  for both the frames. See
  855.           themes/themename/layout.inc.php.
  856.  
  857.    $cfg['RightBgImage'] string
  858.           The URI of the background image used for the right frame. It must be
  859.           an absolute URI. See themes/themename/layout.inc.php.
  860.  
  861.    $cfg['LeftPointerColor'] string [HTML color]
  862.           The color (HTML) used for the pointer in the left frame (does not
  863.           work with Netscape 4). See themes/themename/layout.inc.php.
  864.  
  865.    $cfg['LeftPointerEnable'] boolean
  866.           A value of TRUE activates the left pointer (when LeftFrameLight is
  867.           FALSE).
  868.  
  869.    $cfg['Border'] integer
  870.           The size of a table's border. See themes/themename/layout.inc.php.
  871.  
  872.    $cfg['ThBgcolor'] string [HTML color]
  873.           The    color    (HTML)    used    for    table   headers.   See
  874.           themes/themename/layout.inc.php.
  875.  
  876.    $cfg['BgcolorOne'] string [HTML color]
  877.           The color (HTML) #1 for table rows. See
  878.           themes/themename/layout.inc.php.
  879.  
  880.    $cfg['BgcolorTwo'] string [HTML color]
  881.           The color (HTML) #2 for table rows. See
  882.           themes/themename/layout.inc.php.
  883.  
  884.    $cfg['BrowsePointerColor'] string [HTML color]
  885.           $cfg['BrowseMarkerColor'] string [HTML color]
  886.           The colors (HTML) uses for the pointer and the marker in browse mode
  887.           (does not work with Netscape 4).
  888.           The  former feature highlights the row over which your mouse is
  889.           passing and the latter lets you visually mark/unmark rows by clicking
  890.           on them.
  891.           See themes/themename/layout.inc.php.
  892.  
  893.    $cfg['BrowsePointerEnable'] boolean
  894.           Whether to activate the browse pointer or not.
  895.  
  896.    $cfg['BrowseMarkerEnable'] boolean
  897.           Whether to activate the browse marker or not.
  898.  
  899.    $cfg['TextareaCols'] integer
  900.           $cfg['TextareaRows'] integer
  901.           $cfg['CharTextareaCols'] integer
  902.           $cfg['CharTextareaRows'] integer
  903.           Number of columns and rows for the textareas.
  904.           This  value will be emphasized (*2) for SQL query textareas and
  905.           (*1.25) for SQL textareas inside the query window.
  906.           The Char* values are used for CHAR and VARCHAR editing (if configured
  907.           via $cfg['CharEditing']).
  908.  
  909.    $cfg['LongtextDoubleTextarea'] boolean
  910.           Defines whether textarea for LONGTEXT fields should have double size.
  911.  
  912.    $cfg['TextareaAutoSelect'] boolean
  913.           Defines if the whole textarea of the query box will be selected on
  914.           click.
  915.  
  916.    $cfg['CtrlArrowsMoving'] boolean
  917.           Enable Ctrl+Arrows (Option+Arrows in Safari) moving between fields
  918.           when editing?
  919.  
  920.    $cfg['LimitChars'] integer
  921.           Maximal number of Chars showed in any non-numeric field on browse
  922.           view. Can be turned off by a toggle button on the browse page.
  923.  
  924.    $cfg['ModifyDeleteAtLeft'] boolean
  925.           $cfg['ModifyDeleteAtRight'] boolean
  926.           Defines the place where modify and delete links would be put when
  927.           tables contents are displayed (you may have them displayed both at
  928.           the left and at the right). "Left" and "right" are parsed as "top"
  929.           and "bottom" with vertical display mode.
  930.  
  931.    $cfg['DefaultDisplay'] string
  932.           $cfg['HeaderFlipType'] string
  933.           There  are  3  display modes: horizontal, horizontalflipped and
  934.           vertical. Define which one is displayed by default. The first mode
  935.           displays  each row on a horizontal line, the second rotates the
  936.           headers by 90 degrees, so you can use descriptive headers even though
  937.           fields  only contain small values and still print them out. The
  938.           vertical mode sorts each row on a vertical lineup.
  939.           The HeaderFlipType can be set to 'css' or 'faked'. When using 'css'
  940.           the rotation of the header for horizontalflipped is done via CSS. If
  941.           set to 'faked' PHP does the transformation for you, but of course
  942.           this does not look as good as CSS.
  943.  
  944.    $cfg['DefaultPropDisplay'] string
  945.           When editing/creating new columns in a table all fields normally get
  946.           lined up one field a line. (default: 'horizontal'). If you set this
  947.           to 'vertical' you can have each field lined up vertically beneath
  948.           each  other.  You  can save up a lot of place on the horizontal
  949.           direction and no longer have to scroll.
  950.  
  951.    $cfg['ShowBrowseComments'] boolean
  952.           $cfg['ShowPropertyComments'] boolean
  953.           By setting the corresponding variable to TRUE you can enable the
  954.           display of column comments in Browse or Property display. In browse
  955.           mode, the comments are show inside the header. In property mode,
  956.           comments are displayed using a CSS-formatted dashed-line below the
  957.           name of the field. The comment is shown as a tool-tip for that field.
  958.  
  959.    $cfg['UploadDir'] string
  960.           The name of the directory, where SQL files have been uploaded by
  961.           other means than phpMyAdmin (for example, ftp). Those files are
  962.           available under a drop-down box when you click the database name,
  963.           then the SQL tab.
  964.           Please note that the file names must have the suffix ".sql" (or
  965.           ".sql.bz2"  or  ".sql.gz"  if support for compressed formats is
  966.           enabled).
  967.           This feature is useful when your file is too big to be uploaded via
  968.           HTTP, or when file uploads are disabled in PHP.
  969.           Please note that if PHP is running in safe mode, this directory must
  970.           be owned by the same user as the owner of the phpMyAdmin scripts.
  971.  
  972.    $cfg['docSQLDir'] string
  973.           The name of the directory, where docSQL files can be uploaded for
  974.           import into phpMyAdmin.
  975.           Please note that if PHP is running in safe mode, this directory must
  976.           be owned by the same user as the owner of the phpMyAdmin scripts.
  977.  
  978.    $cfg['SaveDir'] string
  979.           The name of the directory, where dumps can be saved.
  980.           Please note that the directory has to be writable for user running
  981.           webserver.
  982.           Please note that if PHP is running in safe mode, this directory must
  983.           be owned by the same user as the owner of the phpMyAdmin scripts.
  984.  
  985.    $cfg['TempDir'] string
  986.           The name of the directory, where temporary files can be stored.
  987.           This is needed for native MS Excel export, see FAQ 6.23
  988.  
  989.    $cfg['Export'] array
  990.           In this array are defined default parameters for export, names of
  991.           items are similar to texts seen on export page, so you can easily
  992.           identify what they mean.
  993.  
  994.    $cfg['RepeatCells'] integer
  995.           Repeat the headers every X cells, or 0 to deactivate.
  996.  
  997.    $cfg['QueryFrame'] boolean
  998.           $cfg['QueryFrameJS'] boolean
  999.           $cfg['QueryWindowWidth'] integer
  1000.           $cfg['QueryWindowHeight'] integer
  1001.           $cfg['QueryHistoryDB'] boolean
  1002.           $cfg['QueryWindowDefTab'] string
  1003.           $cfg['QueryHistoryMax'] integer
  1004.           All   those  variables  affect  the  query  box  feature.  When
  1005.           $cfg['QueryFrame'] is set to true, a link or icon is displayed on the
  1006.           left panel. Clicking on it opens the query box, a direct interface to
  1007.           enter SQL queries.
  1008.           When $cfg['QueryFrameJS'] is set to true, clicking on that link opens
  1009.           the   query   box,   a   new   custom   sized   browser  window
  1010.           ($cfg['QueryWindowWidth'], $cfg['QueryWindowWidth'] - both integers
  1011.           for the size in pixels). Also, a click on [Edit] from the results
  1012.           page (in the "Showing Rows" section) opens the query box and puts the
  1013.           current query inside it. If set to false, clicking on the link only
  1014.           opens the SQL input in the main frame.
  1015.           The usage of the JavaScript query window is recommended if you have a
  1016.           JavaScript enabled browser. Basic functions are used to exchange
  1017.           quite a few variables, so most 4th generation browsers should be
  1018.           capable  to  use that feature. It currently is only tested with
  1019.           Internet Explorer 6 and Mozilla 1.x.
  1020.           If $cfg['QueryHistoryDB'] is set to TRUE, all your Queries are logged
  1021.           to   a   table,   which   has   to   be  created  by  you  (see
  1022.           $cfg['Servers'][$i]['history']). If set to FALSE, all your queries
  1023.           will be appended to the form, but only as long as your window is
  1024.           opened they remain saved.
  1025.           When using the JavaScript based query window, it will always get
  1026.           updated when you click on a new table/db to browse and will focus if
  1027.           you  click  on "Edit SQL" after using a query. You can suppress
  1028.           updating the query window by checking the box "Do not overwrite this
  1029.           query from outside the window" below the query textarea. Then you can
  1030.           browse tables/databases in the background without losing the contents
  1031.           of the textarea, so this is especially useful when composing a query
  1032.           with  tables  you  first have to look in. The checkbox will get
  1033.           automatically  checked  whenever you change the contents of the
  1034.           textarea. Please uncheck the button whenever you definitely want the
  1035.           query window to get updated even though you have made alterations.
  1036.           If $cfg['QueryHistoryDB'] is set to TRUE you can specify the amount
  1037.           of saved history items using $cfg['QueryHistoryMax'].
  1038.           The query window also has a custom tabbed look to group the features.
  1039.           Using the variable $cfg['QueryWindowDefTab'] you can specify the
  1040.           default tab to be used when opening the query window. It can be set
  1041.           to either 'sql', 'files', 'history' or 'full'.
  1042.  
  1043.    $cfg['BrowseMIME'] boolean
  1044.           Enable MIME-transformations.
  1045.  
  1046.    $cfg['MaxExactCount'] integer
  1047.           Determines for how large tables phpMyAdmin should get exact row count
  1048.           by SELECT COUNT. If approximate row count is smaller than this value,
  1049.           SELECT COUNT will be used, otherwise only value returned by SHOW
  1050.           TABLE STATUS. This has currently an impact only on InnoDB tables.
  1051.  
  1052.    $cfg['WYSIWYG-PDF'] boolean
  1053.           Utilizes a WYSIWYG editing control to easily place elements of a PDF
  1054.           page. By clicking on the button 'toggle scratchboard' on the page
  1055.           where you edit x/y coordinates of those elements you can activate a
  1056.           scratchboard where all your elements are placed. By clicking on an
  1057.           element, you can move them around in the pre-defined area and the x/y
  1058.           coordinates will get updated dynamically. Likewise, when entering a
  1059.           new position directly into the input field, the new position in the
  1060.           scratchboard changes after your cursor leaves the input field.
  1061.           You have to click on the 'OK'-button below the tables to save the new
  1062.           positions. If you want to place a new element, first add it to the
  1063.           table of elements and then you can drag the new element around.
  1064.           By changing the paper size and the orientation you can change the
  1065.           size of the scratchboard as well. You can do so by just changing the
  1066.           dropdown field below, and the scratchboard will resize automatically,
  1067.           without interfering with the current placement of the elements.
  1068.           If ever an element gets out of range you can either enlarge the paper
  1069.           size or click on the 'reset' button to place all elements below each
  1070.           other.
  1071.           NOTE: You have to use a recent browser like IE6 or Mozilla to get
  1072.           this control to work. The basic Drag&Drop script functionality was
  1073.           kindly borrowed from www.youngpup.net and is underlying so specific
  1074.           license.
  1075.  
  1076.    $cfg['NaturalOrder'] boolean
  1077.           Sorts  database and table names according to natural order (for
  1078.           example, t1, t2, t10). Currently implemented in the left panel (Light
  1079.           mode) and in Database view, for the table list.
  1080.  
  1081.    $cfg['ShowHttpHostTitle'] boolean
  1082.           Shows the HTTP host name in window's title bar.
  1083.  
  1084.    $cfg['SetHttpHostTitle'] string
  1085.           If $cfg['ShowHttpHostTitle'] is TRUE, it shows the real HTTP host
  1086.           name, unless an alternate name is set here.
  1087.  
  1088.    $cfg['ErrorIconic'] boolean
  1089.           Uses icons for warnings, errors and informations.
  1090.  
  1091.    $cfg['MainPageIconic'] boolean
  1092.           Uses icons on main page in lists, on right panel top menu and menu
  1093.           tabs.
  1094.  
  1095.    $cfg['ReplaceHelpImg'] boolean
  1096.           Shows a help button instead of the "Documentation" message.
  1097.  
  1098.    $cfg['ThemePath'] string
  1099.           If theme manager is active, use this as the path of the subdirectory
  1100.           containing all the themes.
  1101.  
  1102.    $cfg['ThemeManager'] boolean
  1103.           Enables user-selectable themes. See FAQ 2.7.
  1104.  
  1105.    $cfg['ThemeDefault'] string
  1106.           The default theme (a subdirectory under cfg['ThemePath']).
  1107.  
  1108.    $cfg['DefaultQueryTable'] string
  1109.    $cfg['DefaultQueryDatabase'] string
  1110.           Default queries that will be displayed in query boxes when user
  1111.           didn't specify any. Use %d for database name, %t for table name and
  1112.           %f for a comma separated list of field names. Note that %t and %f are
  1113.           only applicable to $cfg['DefaultQueryTable'].
  1114.  
  1115.    $cfg['SQP']['fmtType'] string [html|none]
  1116.           The main use of the new SQL Parser is to pretty-print SQL queries. By
  1117.           default we use HTML to format the query, but you can disable this by
  1118.           setting this variable to 'none'.
  1119.  
  1120.    $cfg['SQP']['fmtInd'] float
  1121.           $cfg['SQP']['fmtIndUnit'] string [em|px|pt|ex]
  1122.           For the pretty-printing of SQL queries, under some cases the part of
  1123.           a   query   inside   a   bracket   is   indented.  By  changing
  1124.           $cfg['SQP']['fmtInd'] you can change the amount of this indent.
  1125.           Related in purpose is $cfg['SQP']['fmtIndUnit'] which specifies the
  1126.           units of the indent amount that you specified. This is used via
  1127.           stylesheets.
  1128.  
  1129.    $cfg['SQP']['fmtColor'] array of string tuples
  1130.           This array is used to define the colours for each type of element of
  1131.           the pretty-printed SQL queries. The tuple format is
  1132.           class => [HTML colour code | empty string]
  1133.           If  you specify an empty string for the color of a class, it is
  1134.           ignored in creating the stylesheet. You should not alter the class
  1135.           names, only the colour strings.
  1136.           Class name key:
  1137.  
  1138.           + comment Applies to all comment sub-classes
  1139.           + comment_mysql Comments as "#...\n"
  1140.           + comment_ansi Comments as "-- ...\n"
  1141.           + comment_c Comments as "/*...*/"
  1142.           + digit Applies to all digit sub-classes
  1143.           + digit_hex Hexadecimal numbers
  1144.           + digit_integer Integer numbers
  1145.           + digit_float Floating point numbers
  1146.           + punct Applies to all punctuation sub-classes
  1147.           + punct_bracket_open_round Opening brackets"("
  1148.           + punct_bracket_close_round Closing brackets ")"
  1149.           + punct_listsep List item Separator ","
  1150.           + punct_qualifier Table/Column Qualifier "."
  1151.           + punct_queryend End of query marker ";"
  1152.           + alpha Applies to all alphabetic classes
  1153.           + alpha_columnType Identifiers matching a column type
  1154.           + alpha_columnAttrib Identifiers matching a database/table/column
  1155.             attribute
  1156.           + alpha_functionName Identifiers matching a MySQL function name
  1157.           + alpha_reservedWord Identifiers matching any other reserved word
  1158.           + alpha_variable Identifiers matching a SQL variable "@foo"
  1159.           + alpha_identifier All other identifiers
  1160.           + quote Applies to all quotation mark classes
  1161.           + quote_double Double quotes "
  1162.           + quote_single Single quotes '
  1163.           + quote_backtick Backtick quotes `
  1164.  
  1165.    $cfg['SQLValidator']['use'] boolean
  1166.           phpMyAdmin now supports use of the Mimer SQL Validator service, as
  1167.           originally published on Slashdot.
  1168.           For help in setting up your system to use the service, see the FAQ
  1169.           #6.14.
  1170.  
  1171.    $cfg['SQLValidator']['username'] string
  1172.           $cfg['SQLValidator']['password'] string
  1173.           The SOAP service allows you to login with anonymous and any password,
  1174.           so we use those by default. Instead, if you have an account with
  1175.           them, you can put your login details here, and it will be used in
  1176.           place of the anonymous login.
  1177.  
  1178.    $cfg['DBG']['enable'] boolean
  1179.           DEVELOPERS ONLY!
  1180.           Enable the DBG extension for debugging phpMyAdmin. Required for
  1181.           profiling the code.
  1182.           For  help in setting up your system to this, see the Developers
  1183.           section.
  1184.  
  1185.    $cfg['DBG']['profile']['enable'] boolean
  1186.           DEVELOPERS ONLY!
  1187.           Enable profiling support for phpMyAdmin. This will append a chunk of
  1188.           data to the end of every page displayed in the main window with
  1189.           profiling statistics for that page.
  1190.           You may need to increase the maximum execution time for this to
  1191.           complete successfully.
  1192.  
  1193.    $cfg['DBG']['profile']['threshold'] float (units in milliseconds)
  1194.           DEVELOPERS ONLY!
  1195.           When  profiling  data  is displayed, this variable controls the
  1196.           threshold of display for any profiling data, based on the average
  1197.           time  each  time  has  taken. If it is over the threshold it is
  1198.           displayed, otherwise it is not displayed. This takes a value in
  1199.           milliseconds. In most cases you don't need to edit this.
  1200.  
  1201.    $cfg['ColumnTypes'] array
  1202.           All possible types of a MySQL column. In most cases you don't need to
  1203.           edit this.
  1204.  
  1205.    $cfg['AttributeTypes'] array
  1206.           Possible attributes for fields. In most cases you don't need to edit
  1207.           this.
  1208.  
  1209.    $cfg['Functions'] array
  1210.           A list of functions MySQL supports. In most cases you don't need to
  1211.           edit this.
  1212.  
  1213.    $cfg['RestrictColumnTypes'] array
  1214.           Mapping of column types to meta types used for preferring displayed
  1215.           functions. In most cases you don't need to edit this.
  1216.  
  1217.    $cfg['RestrictFunctions'] array
  1218.           Functions  preferred  for  column  meta  types  as  defined  in
  1219.           $cfg['RestrictColumnTypes']. In most cases you don't need to edit
  1220.           this.
  1221.  
  1222.    $cfg['DefaultFunctions'] array
  1223.           Functions selected by default when insering/changing row, Functions
  1224.           are defined for meta types from $cfg['RestrictColumnTypes'] and for
  1225.           first_timestamp, which is used for first timestamp column in table.
  1226.  
  1227.    $cfg['NumOperators'] array
  1228.           Operators available for search operations on numeric and date fields.
  1229.  
  1230.    $cfg['TextOperators'] array
  1231.           Operators available for search operations on character fields. Note
  1232.           that  we  put  LIKE  by default instead of LIKE %...%, to avoid
  1233.           unintended performance problems in case of huge tables.
  1234.  
  1235.    $cfg['EnumOperators'] array
  1236.           Operators available for search operations on enum fields.
  1237.  
  1238.    $cfg['NullOperators'] array
  1239.           Additionnal operators available for search operations when the field
  1240.           can be null.
  1241.  
  1242. Transformations
  1243.  
  1244.    Introduction  -  Usage  -  File structure
  1245.  
  1246.   [1. Introduction]
  1247.  
  1248.    To enable transformations, you have to setup the column_info table and th   e proper directives. Please see the Configuration section on how to do s   o.
  1249.  
  1250.    You can apply different transformations to the contents of each field. Th   e transformation will take the content of each field and transform it wi   th certain rules defined in the selected transformation.
  1251.  
  1252.    Say you have a field 'filename' which contains a filename. Normally you w   ould see in phpMyAdmin only this filename. Using transformations you can    transform that filename into a HTML link, so you can click inside of th   e phpMyAdmin structure on the field's link and will see the file display   ed in a new browser window. Using transformation options you can also sp   ecify strings to append/prepend to a string or the format you want the o   utput stored in.
  1253.  
  1254.    For a general overview of all available transformations and their options   , you can consult your <www.your-host.com>/<your-install-dir>/libraries/   transformations/overview.php installation.
  1255.  
  1256.    For a tutorial on how to effectively use transformations, see our Link se   ction on the official phpMyAdmin-homepage.
  1257.  
  1258.   [2. Usage]
  1259.  
  1260.    Go to your tbl_properties.inc.php page (i.e. reached through clicking on   the 'properties' link for a table). There click on "Change" (or change i   con) and there you will see three new fields at the end of the line. The   y are called 'MIME-type', 'Browser transformation' and 'Transformation o   ptions'.
  1261.      * The field 'MIME-type' is a dropdown field. You have the options to le       ave  that  field  empty or to use 'auto' [this feature is not yet
  1262.        available]. Please note that transformations are inactive as long as no
  1263.        MIME-type is selected.
  1264.      * The field 'Browser transformation' is a drop-down field. You can choo       se from a hopefully growing amount of pre-defined transformations. See
  1265.        below for information on how to build your own transformation.
  1266.        There are global transformations and mimetype-bound transformations.
  1267.        Global transformations can be used for any mimetype. They will take the
  1268.        mimetype, if necessary, into regard. Mimetype-bound transformations
  1269.        usually only operate on a certain mimetype. There are transformations
  1270.        which operate on the main mimetype (like 'image'), which will most
  1271.        likely take the subtype into regard, and those who only operate on a
  1272.        specific subtype (like 'image/jpeg').
  1273.        You can use transformations on mimetypes for which the function was not
  1274.        defined for. There is no security check for you selected the right
  1275.        transformation, so take care of what the output will be like.
  1276.      * The field 'Transformation options' is a free-type textfield. You have         to  enter transform-function specific options here. Usually the
  1277.        transforms can operate with default options, but it is generally a good
  1278.        idea to look up the overview to see which options are necessary.
  1279.        Much like the ENUM/SET-Fields, you have to split up several options
  1280.        using the format 'a','b','c',...(NOTE THE MISSING BLANKS). This is
  1281.        because internally the options will be parsed as an array, leaving the
  1282.        first value the first element in the array, and so forth.
  1283.        If you want to specify a MIME character set you can define it in the
  1284.        transformation_options. You have to put that outside of the pre-defined
  1285.        options of the specific mime-transform, as the last value of the set.
  1286.        Use the format "'; charset=XXX'". If you use a transform, for which you
  1287.        can specify 2 options and you want to append a character set, enter
  1288.        "'first parameter','second parameter','charset=us-ascii'". You can,
  1289.        however use the defaults for the parameters: "'','','charset=us-ascii'".
  1290.  
  1291.   [3. File structure]
  1292.  
  1293.    All mimetypes and their transformations are defined through single files   in the directory 'libraries/transformations/'.
  1294.  
  1295.    They are stored in files to ease up customization and easy adding of new   transformations.
  1296.  
  1297.    Because the user cannot enter own mimetypes, it is kept sure that transfo   rmations always work. It makes no sense to apply a transformation to a m   imetype, the transform-function doesn't know to handle.
  1298.  
  1299.    One can, however, use empty mime-types and global transformations which s   hould work for many mimetypes. You can also use transforms on a differen   t mimetype they where built for, but pay attention to option usage as we   ll as what the transformation does to your field.
  1300.  
  1301.    There is a basic file called 'global.inc.php'. This function can be inclu   ded by any other transform function and provides some basic functions.
  1302.  
  1303.    There are 5 possible file names:
  1304.     1. A mimetype+subtype transform:
  1305.        [mimetype]_[subtype]__[transform].inc.php
  1306.        Please not that mimetype and subtype are separated via '_', which shall
  1307.        not be contained in their names. The transform function/filename may
  1308.        contain only characters which cause no problems in the file system as
  1309.        well as the PHP function naming convention.
  1310.        The transform function will the be called
  1311.        'PMA_transform_[mimetype]_[subtype]__[transform]()'.
  1312.        Example:
  1313.        text_html__formatted.inc.php
  1314.        PMA_transform_text_html__formatted()
  1315.     2. A mimetype (w/o subtype) transform:
  1316.        [mimetype]__[transform].inc.php
  1317.        Please note that there are no single '_' characters. The transform
  1318.        function/filename may contain only characters which cause no problems in
  1319.        the file system as well as the PHP function naming convention.
  1320.        The transform function will the be called
  1321.        'PMA_transform_[mimetype]__[transform]()'.
  1322.        Example:
  1323.        text__formatted.inc.php
  1324.        PMA_transform_text__formatted()
  1325.     3. A mimetype+subtype without specific transform function
  1326.        [mimetype]_[subtype].inc.php
  1327.        Please note that there are no '__' characters in the filename. Do not
  1328.        use special characters in the filename causing problems with the file
  1329.        system.
  1330.        No transformation function is defined in the file itself.
  1331.        Example:
  1332.        text_plain.inc.php
  1333.        (No function)
  1334.     4. A mimetype (w/o subtype) without specific transform function
  1335.        [mimetype].inc.php
  1336.        Please note that there are no '_' characters in the filename. Do not use
  1337.        special  characters in the filename causing problems with the file
  1338.        system.
  1339.        No transformation function is defined in the file itself.
  1340.        Example:
  1341.        text.inc.php
  1342.        (No function)
  1343.     5. A global transform function with no specific mimetype
  1344.        global__[transform].inc.php
  1345.        The transform function will the be called
  1346.        'PMA_transform_global__[transform]()'.
  1347.        Example:
  1348.        global__formatted
  1349.        PMA_transform_global__formatted()
  1350.  
  1351.    So generally use '_' to split up mimetype and subtype, and '__' to provid   e a transform function.
  1352.  
  1353.    All filenames containing no '__' in themselves are not shown as valid tra   nsform functions in the dropdown.
  1354.  
  1355.    Please see the libraries/transformations/TEMPLATE file for adding your ow   n transform function. See the libraries/transformations/TEMPLATE_MIMETYP   E for adding a mimetype without a transform function. Also note the intr   oduction of a function description in the language files. For each funct   ion a $strTransformation_[filename without .inc.php] has to exist.
  1356.  
  1357.    You can use the template generator to generate new functions and entries   in the language file.
  1358.  
  1359.    To create a new transform function please see libraries/transformations/t   emplate_generator.sh. To create a new, empty mimetype please see librari   es/transformations/template_generator_mimetype.sh.
  1360.  
  1361.    A transform function always gets passed three variables:
  1362.     1. $buffer - Contains the text inside of the column. This is the text, y       ou want to transform.
  1363.     2. $options - Contains any user-passed options to a transform function a       s an array.
  1364.     3. $meta - Contains an object with field information to your column. The        data is drawn from the output of the mysql_fetch_field() function.
  1365.        This means, all object properties described on the manual page are
  1366.        available  in  this  variable and can be used to transform a field
  1367.        accordingly to unsigned/zerofill/not_null/... properties.
  1368.        The $meta->mimetype variable contains the original MIME-type of the
  1369.        field (i.e. 'text/plain', 'image/jpeg' etc.)
  1370.  
  1371. FAQ - Frequently Asked Questions
  1372.  
  1373.    Server  -  Configuration  -  Limitations  -  Multi-user  -  Browsers  -     Usage tips  -  Project  -  Security
  1374.  
  1375.    Please have a look at our Link section on the official phpMyAdmin homepag   e for in-depth coverage of phpMyAdmin's features and/or interface.
  1376.  
  1377.   [1. Server]
  1378.  
  1379.     [1.1] I'm running PHP 4+ and my server is crashing each time a specific
  1380.     action is required or phpMyAdmin sends a blank page or a page full of
  1381.     cryptic characters to my browser, what can I do?
  1382.  
  1383.    There are some known PHP bugs with output buffering and compression.
  1384.    Try to set the $cfg['OBGzip'] directive to FALSE in your config.inc.php f   ile and the zlib.output_compression directive to Off in your php configu   ration file.
  1385.    Furthermore, we know about such problems connected to the release candida   tes of PHP 4.2.0 (tested with PHP 4.2.0 RC1 to RC4) together with MS Int   ernet Explorer. Please upgrade to the release version PHP 4.2.0.
  1386.  
  1387.     [1.2] My Apache server crashes when using phpMyAdmin.
  1388.  
  1389.    You should first try the latest versions of Apache (and possibly MySQL).
  1390.    See also the other FAQ entry about PHP bugs with output buffering.
  1391.    If your server keeps crashing, please ask for help in the various Apache   support groups.
  1392.  
  1393.     [1.3] I'm running phpMyAdmin with "cookie" authentication mode under PHP
  1394.     4.2.0 or 4.2.1 loaded as an Apache 2+ module but can't enter the script:
  1395.     I'm always displayed the login screen.
  1396.  
  1397.    This is a known PHP bug (see this bug report) from the official PHP bug d   atabase. It means there is and won't be any phpMyAdmin fix against it be   cause there is no way to code a fix.
  1398.  
  1399.     [1.4] Using phpMyAdmin on IIS, I'm displayed the error message: "The
  1400.     specified CGI application misbehaved by not returning a complete set of
  1401.     HTTP headers...".
  1402.  
  1403.    You just forgot to read the install.txt file from the php distribution. H   ave a look at the last message in this bug report from the official PHP   bug database.
  1404.  
  1405.     [1.5] Using phpMyAdmin on IIS, I'm facing crashes and/or many error
  1406.     messages with the HTTP or advanced authentication mode.
  1407.  
  1408.    This is a known problem with the PHP ISAPI filter: it's not so stable. Fo   r some more information and complete testings see the messages posted by    Andr├⌐ B. aka "djdeluxe76" in this thread from the phpWizard forum.
  1409.    Please use instead the cookie authentication mode.
  1410.  
  1411.     [1.6] I can't use phpMyAdmin on PWS: nothing is displayed!
  1412.  
  1413.    This seems to be a PWS bug. Filippo Simoncini found a workaround (at this    time there is no better fix): remove or comment the DOCTYPE declaration   s (2 lines) from the scripts header.inc.php, header_printview.inc.php, i   ndex.php, left.php and libraries/common.lib.php.
  1414.  
  1415.     [1.7] How can I GZip or Bzip a dump or a CSV export. It does not seem to
  1416.     work.
  1417.  
  1418.    These features are based on the gzencode() and bzcompress() PHP functions    to be more independent of the platform (Unix/Windows, Safe Mode or not,    and so on). So, you must have PHP4 >= 4.0.4 and Zlib/Bzip2 support (--w   ith-zlib and --with-bz2).
  1419.    We faced PHP crashes when trying to download a dump with MS Internet Expl   orer when phpMyAdmin is run with a release candidate of PHP 4.2.0. In th   is case you should switch to the release version of PHP 4.2.0.
  1420.  
  1421.     [1.8] I cannot insert a text file in a table, and I get an error about safe
  1422.     mode being in effect.
  1423.  
  1424.    Your uploaded file is saved by PHP in the "upload dir", as defined in php   .ini by the variable upload_tmp_dir (usually the system default is /tmp)   .
  1425.    We recommend the following setup for Apache servers running in safe mode,    to enable uploads of files while being reasonably secure:
  1426.      * create a separate directory for uploads: mkdir /tmp/php
  1427.      * give ownership to the Apache server's user.group: chown apache.apache        /tmp/php
  1428.      * give proper permission: chmod 600 /tmp/php
  1429.      * put upload_tmp_dir = /tmp/php in php.ini
  1430.      * restart Apache
  1431.  
  1432.     [1.9] I'm having troubles when uploading files. In general file uploads
  1433.     don't work on my system and uploaded files have a Content-Type: header in
  1434.     the first line.
  1435.  
  1436.    It's not really phpMyAdmin related but RedHat 7.0. You have a RedHat 7.0   and you updated your PHP RPM to php-4.0.4pl1-3.i386.rpm, didn't you?
  1437.    So the problem is that this package has a serious bug that was corrected   ages ago in PHP (2001-01-28: see PHP's bug tracking system for more deta   ils). The problem is that the bugged package is still available though i   t was corrected (see RedHat's BugZilla for more details).
  1438.    So please download the fixed package (4.0.4pl1-9) and the problem should   go away.
  1439.    And that fixes the \r\n problem with file uploads!
  1440.  
  1441.     [1.10] I'm having troubles when uploading files with phpMyAdmin running on
  1442.     a secure server. My browser is Internet Explorer and I'm using the Apache
  1443.     server.
  1444.  
  1445.    As suggested by "Rob M" in the phpWizard forum, add this line to your htt   pd.conf:
  1446.        SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown
  1447.    It seems to clear up many problems between Internet Explorer and SSL.
  1448.  
  1449.     [1.11] I get an 'open_basedir restriction' while uploading a file from the
  1450.     query box.
  1451.  
  1452.    Since version 2.2.4, phpMyAdmin supports servers with open_basedir restri   ctions. Assuming that the restriction allows you to open files in the cu   rrent directory ('.'), all you have to do is create a 'tmp' directory un   der the phpMyAdmin install directory, with permissions 777 and the same   owner as the owner of your phpMyAdmin directory. The uploaded files will    be moved there, and after execution of your SQL commands, removed.
  1453.  
  1454.     [1.12] I have lost my MySQL root password, what can I do?
  1455.  
  1456.    The MySQL manual explains how to reset the permissions.
  1457.  
  1458.     [1.13] I get an error 'No SQL query' when trying to execute a bookmark.
  1459.  
  1460.    If PHP does not have read/write access to its upload_tmp_dir, it cannot a   ccess the uploaded query.
  1461.  
  1462.     [1.14] I get an error 'No SQL query' when trying to submit a query from the
  1463.     convenient text area.
  1464.  
  1465.    Check the post_max_size directive from your PHP configuration file and tr   y to increase it.
  1466.  
  1467.     [1.15] I have problems with mysql.user field names.
  1468.  
  1469.    In older MySQL versions, the User and Password fields were named user and    password. Please modify your field names to align with current standard   s.
  1470.  
  1471.     [1.16] I cannot upload big dump files (memory, http or timeout problems).
  1472.  
  1473.    The first things to check (or ask your host provider to check) are the va   lues of upload_max_filesize, memory_limit and post_max_size in the php.i   ni configuration file.
  1474.    All of these three settings limit the maximum size of data that can be su   bmitted and handled by PHP. One user also said that post_max_size and me   mory_limit need to be larger than upload_max_filesize.
  1475.    If you get a timeout problem, look at the $cfg['UploadDir'] feature.
  1476.  
  1477.     [1.17] Which MySQL versions does phpMyAdmin support?
  1478.  
  1479.    All MySQL versions from 3.23.32 till 5.0 (except for 4.1.0 and 4.1.1) are    fully supported. Please note that the older your MySQL version is, the   more limitations you will have to face.
  1480.    phpMyAdmin may connect to your MySQL server using php's classic MySQL ext   ension as well as the improved MySQL extension (MySQLi) that is availabl   e in php 5.0.
  1481.    Either way, the developers of both extensions recommend to use the classi   c extension for MySQL 4.0 and below and MySQLi for MySQL 4.1 and newer.
  1482.    When compiling php, we strongly recommend that you manually link the MySQ   L extension of your choice to a MySQL client library of at least the sam   e minor version since the one that is bundled with some php distribution   s is rather old and might cause problems (see also FAQ 1.17a).
  1483.    MySQL 5.1 is not yet supported.
  1484.  
  1485.     [1.17a] I cannot connect to the MySQL server. It always returns the error
  1486.     message, "Client does not support authentication protocol requested by
  1487.     server; consider upgrading MySQL client"
  1488.  
  1489.    You tried to access MySQL with an old MySQL client library. The version o   f your MySQL client library can be checked in your phpinfo() output.
  1490.    In general, it should have at least the same minor version as your server    - as mentioned in FAQ 1.17.
  1491.    The only way to fix this problem is manually compiling php and its MySQL   extension against a current MySQL client library.
  1492.    If you still face this problem, please compile your MySQL client library   against the same or a newer MySQL release.
  1493.  
  1494.     [1.18] I'm running MySQL <= 4.0.1 having lower_case_table_names set to 1.
  1495.     If I create a new table with a capital letter in its name it is changed to
  1496.     lowercase as it should. But if I try to DROP this table MySQL is unable to
  1497.     find the corresponding file.
  1498.  
  1499.    This is a bug of MySQL <= 4.0.1. Please upgrade to at least MySQL 4.0.2 o   r turn off your lower_case_table_names directive.
  1500.  
  1501.     [1.19] I can't run the "display relations" feature because the script seems
  1502.     not to know the font face I'm using!
  1503.  
  1504.    The "FPDF" library we're using for this feature requires some special fil   es to use font faces.
  1505.    Please refers to the FPDF manual to build these files.
  1506.  
  1507.     [1.20] I receive the error "cannot load MySQL extension, please check PHP
  1508.     Configuration".
  1509.  
  1510.    To connect to a MySQL server, PHP needs a set of MySQL functions called "   MySQL extension". This extension may be part of the PHP distribution (co   mpiled-in), otherwise it needs to be loaded dynamically. Its name is pro   bably mysql.so or php_mysql.dll. phpMyAdmin tried to load the extension   but failed.
  1511.    Usually, the problem is solved by installing a software package called "P   HP-MySQL" or something similar.
  1512.  
  1513.     [1.21] I am running the CGI version of PHP under Unix, and I cannot login
  1514.     using cookie auth.
  1515.  
  1516.    In php.ini, set mysql.max_links higher than 1.
  1517.  
  1518.     [1.22] I don't see the "Location of text file" field, so I cannot upload.
  1519.  
  1520.    This is most likely because in php.ini, your file_uploads parameter is no   t set to "on".
  1521.  
  1522.     [1.23] I'm running MySQL on a Win32 machine. Each time I create a new table
  1523.     the table and field names are changed to lowercase!
  1524.  
  1525.    This happens because the MySQL directive lower_case_table_names defaults   to 1 (ON) in the Win32 version of MySQL. You can change this behavior by    simply changing the directive to 0 (OFF):
  1526.    Just edit your my.ini file that should be located in your Windows directo   ry and add the following line to the group [mysqld]:
  1527.    set-variable = lower_case_table_names=0
  1528.    Next, save the file and restart the MySQL service. You can always check t   he value of this directive using the query
  1529.    SHOW VARIABLES LIKE 'lower_case_table_names';
  1530.  
  1531.     [1.24] Some characters are being truncated in my queries, or I get
  1532.     characters randomly added. I am running PHP 4.2.3.
  1533.  
  1534.    This is a PHP 4.2.3 bug.
  1535.  
  1536.     [1.25] I am running Apache with mod_gzip-1.3.26.1a on Windows XP, and I get
  1537.     problems, such as undefined variables when I run a SQL query.
  1538.  
  1539.    A tip from Jose Fandos: put a comment on the following two lines in httpd   .conf, like this:
  1540.    # mod_gzip_item_include file \.php$
  1541.    # mod_gzip_item_include mime "application/x-httpd-php.*"
  1542.    as this version of mod_gzip on Apache (Windows) has problems handling PHP    scripts. Of course you have to restart Apache.
  1543.  
  1544.     [1.26] I just installed phpMyAdmin in my document root of IIS but I get the
  1545.     error "No input file specified" when trying to run phpMyAdmin.
  1546.  
  1547.    This is a permission problem. Right-click on the phpmyadmin folder and ch   oose properties. Under the tab Security, click on "Add" and select the u   ser "IUSR_machine" from the list. Now set his permissions and it should   work.
  1548.  
  1549.     [1.27] I get empty page when I want to view huge page (eg.
  1550.     db_details_structure.php with plenty of tables).
  1551.  
  1552.    This is a PHP bug that occur when GZIP output buffering is enabled. If yo   u turn off it (by $cfg['OBGzip'] = FALSE in config.inc.php), it should w   ork. This bug will be fixed in PHP 5.0.0.
  1553.  
  1554.     [1.28] My MySQL server sometimes refuses queries and returns the message
  1555.     'Errorcode: 13'. What does this mean?
  1556.  
  1557.    This can happen due to a MySQL bug when having database / table names wit   h upper case characters although lower_case_table_names is set to 1. To   fix this, turn off this directive, convert all database and table names   to lower case and turn it on again. Alternatively, there's a bug-fix ava   ilable starting with MySQL 3.23.56 / 4.0.11-gamma.
  1558.  
  1559.     [1.29] When I create a table or modify a field, I get an error and the
  1560.     fields are duplicated.
  1561.  
  1562.    It is possible to configure Apache in such a way that PHP has problems in   terpreting .php files.
  1563.    The problems occur when two different (and conflicting) set of directives    are used:
  1564.    SetOutputFilter PHP
  1565.    SetInputFilter PHP
  1566.    &
  1567.    AddType application/x-httpd-php .php
  1568.    In the case we saw, one set of directives was in /etc/httpd/conf/httpd.co   nf, while the other set was in /etc/httpd/conf/addon-modules/php.conf.
  1569.    The recommended way is with AddType, so just comment out the first set of    lines and restart Apache:
  1570.    #SetOutputFilter PHP
  1571.    #SetInputFilter PHP
  1572.    
  1573.     [1.30] I get the error "left.php: Missing hash".
  1574.  
  1575.    This problem is known to happen when the server is running Turck MMCache   but upgrading MMCache to version 2.3.21 solves the problem.
  1576.  
  1577.     [1.31] Does phpMyAdmin support php5?
  1578.  
  1579.    Yes.
  1580.    However, phpMyAdmin needs to be backwards compatible to php4. This is why    you won't be able to run phpMyAdmin having enabled E_STRICT in your err   or_reporting settings.
  1581.  
  1582.     [1.32] Can I use HTTP authentication with IIS?
  1583.  
  1584.    Yes. This procedure was tested with phpMyAdmin 2.6.1, PHP 4.3.9 in ISAPI   mode under IIS 5.1.
  1585.     1. In your php.ini file, set cgi.rfc2616_headers = 0
  1586.     2. In Web Site Properties -> File/Directory Security -> Anonymous Access        dialog box, check the Anonymous access checkbox and uncheck any other
  1587.        checkboxes  (i.e. uncheck Basic authentication, Integrated Windows
  1588.        authentication, and Digest if it's enabled.) Click OK.
  1589.     3. In Custom Errors, select the range of 401;1 through 401;5 and click t       he Set to Default button.
  1590.  
  1591.   [2. Configuration]
  1592.  
  1593.     [2.1] The error message "Warning: Cannot add header information - headers
  1594.     already sent by ..." is displayed, what's the problem?
  1595.  
  1596.    Edit your config.inc.php or .php file and ensure there is nothing (I.E. n   o blank lines, no spaces, no characters...) neither before the <?php tag    at the beginning, neither after the ?> tag at the end.
  1597.  
  1598.     [2.2] phpMyAdmin can't connect to MySQL. What's wrong?
  1599.  
  1600.    Either there is an error with your PHP setup or your username/password is    wrong. Try to make a small script which uses mysql_connect and see if i   t works. If it doesn't, it may be you haven't even compiled MySQL suppor   t into PHP.
  1601.  
  1602.     [2.3] The error message "Warning: MySQL Connection Failed: Can't connect to
  1603.     local MySQL server through socket '/tmp/mysql.sock' (111)..." is displayed.
  1604.     What can I do?
  1605.  
  1606.    For RedHat users, Harald Legner suggests this on the mailing list:
  1607.    On my RedHat-Box the socket of MySQL is /var/lib/mysql/mysql.sock. In you   r php.ini you will find a line
  1608.        mysql.default_socket = /tmp/mysql.sock
  1609.    change it to
  1610.        mysql.default_socket = /var/lib/mysql/mysql.sock
  1611.    Then restart apache and it will work.
  1612.    Here is a fix suggested by Brad Ummer in the phpwizard forum:
  1613.      * First, you need to determine what socket is being used by MySQL.
  1614.        To do this, telnet to your server and go to the MySQL bin directory. In
  1615.        this  directory  there  should  be  a  file named mysqladmin. Type
  1616.        ./mysqladmin variables, and this should give you a bunch of info about
  1617.        your MySQL server, including the socket (/tmp/mysql.sock, for example).
  1618.      * Then, you need to tell PHP to use this socket.
  1619.        Assuming you are using PHP 3.0.10 or better, you can specify the socket
  1620.        to use when you open the connection. To do this in phpMyAdmin, you need
  1621.        to complete the socket information in the config.inc.php.
  1622.        For example: $cfg['Servers'][$i]['socket'] = '/tmp/mysql.sock';
  1623.        Please also make sure that the permissions of this file allow to be
  1624.        readable by your webserver (i.e. '0755').
  1625.  
  1626.    Have also a look at the corresponding section of the MySQL documentation.   
  1627.     [2.4] Nothing is displayed by my browser when I try to run phpMyAdmin, what
  1628.     can I do?
  1629.  
  1630.    Try to set the $cfg['OBGZip'] directive to FALSE in the phpMyAdmin config   uration file. It helps sometime.
  1631.    Also have a look at your PHP version number: if it contains "4.0b..." it   means you're running a beta version of PHP. That's not a so good idea, p   lease upgrade to a plain revision.
  1632.  
  1633.     [2.5] Each time I want to insert or change a record or drop a database or a
  1634.     table, an error 404 (page not found) is displayed or, with HTTP or cookie
  1635.     authentication, I'm asked to login again. What's wrong?
  1636.  
  1637.    Check the value you set for the $cfg['PmaAbsoluteUri'] directive in the p   hpMyAdmin configuration file.
  1638.  
  1639.     [2.6] I get an "Access denied for user: 'root@localhost' (Using password:
  1640.     YES)"-error when trying to access a MySQL-Server on a host which is
  1641.     port-forwarded for my localhost.
  1642.  
  1643.    When you are using a port on your localhost, which you redirect via port-   forwarding to another host, MySQL is not resolving the localhost as expe   cted.
  1644.    Erik Wasser explains: The solution is: if your host is "localhost" MySQL   (the commandline tool 'mysql' as well) always tries to use the socket co   nnection for speeding up things. And that doesn't work in this configura   tion with port forwarding.
  1645.    If you enter "127.0.0.1" as hostname, everything is right and MySQL uses   the TCP connection.
  1646.  
  1647.     [2.7] Using and creating themes
  1648.  
  1649.    Themes are configured with $cfg['ThemePath'], $cfg['ThemeManager'] and $c   fg['ThemeDefault'].
  1650.    Under $cfg['ThemePath'], you should not delete the directory "original" o   r its underlying structure, because this is the system theme used by php   MyAdmin. "original" contains all images and styles, for backwards compat   ibility and for all themes that would not include images or css-files.
  1651.    If $cfg['ThemeManager'] is enabled, you can select your favorite theme on    the main page. Your selected theme will be stored in a cookie.
  1652.  
  1653.    To create a theme:
  1654.      * make a new subdirectory (for example "your_theme_name") under $cfg['T       hemePath'] (by default themes)
  1655.      * copy the files and directories from "original" to "your_theme_name"
  1656.      * edit the css-files in "your_theme_name/css"
  1657.      * put your new images in "your_theme_name/img"
  1658.      * edit layout.inc.php in "your_theme_name"
  1659.      * edit info.inc.php in "your_theme_name" to contain your chosen theme n       ame, that will be visible in user interface
  1660.      * make a new screenshot of your theme and save it under "your_theme_nam       e/screen.png"
  1661.  
  1662.    In theme directory there is file info.inc.php which contains theme verbos   e name, theme generation and theme version. These versions and generatio   ns are enumerated from 1 and do not have any direct dependance on phpMyA   dmin version. Themes within same generation should be backwards compatib   le - theme with version 2 should work in phpMyAdmin requiring version 1.    Themes with different generation are incompatible.
  1663.  
  1664.    If you do not want to use your own symbols and buttons, remove the direct   ory "img" in "your_theme_name". phpMyAdmin will use the default icons an   d buttons (from the system-theme "original").
  1665.  
  1666.     [2.8] I get "Missing parameters" errors, what can I do?
  1667.  
  1668.    Here are a few points to check:
  1669.      * In config.inc.php, try to leave the $cfg['PmaAbsoluteUri']directive e       mpty. See also FAQ 4.7.
  1670.      * Maybe you have a broken PHP installation or you need to upgrade your       Zend Optimizer. See http://bugs.php.net/bug.php?id=31134.
  1671.  
  1672.   [3. Known limitations]
  1673.  
  1674.     [3.1] When using HTTP authentication, an user who logged out can not
  1675.     relogin in with the same nick.
  1676.  
  1677.    This is related to the authentication mechanism (protocol) used by phpMyA   dmin. To bypass this problem: just close all the opened browser windows   and then go back to phpMyAdmin. You should be able to log in again.
  1678.  
  1679.     [3.2] When dumping a large table in compressed mode, I get a memory limit
  1680.     error or a time limit error.
  1681.  
  1682.    Compressed dumps are built in memory and because of this are limited to p   hp's memory limit. For GZip/BZip2 exports this can be overcome since 2.5   .4 using $cfg['CompressOnFly'] (enabled by default). Zip exports can not    be handled this way, so if you need Zip files for larger dump, you have    to use another way.
  1683.  
  1684.     [3.3] With InnoDB tables, I lose foreign key relationships when I rename or
  1685.     alter a table.
  1686.  
  1687.    This seems to be a InnoDB bug (fixed in MySQL 3.23.50?).
  1688.  
  1689.     [3.4] I am unable to import dumps I created with the mysqldump tool bundled
  1690.     with the MySQL server distribution.
  1691.  
  1692.    The problem is that mysqldump creates invalid comments like this:
  1693. -- MySQL dump 8.22
  1694. --
  1695. -- Host: localhost Database: database
  1696. ---------------------------------------------------------
  1697. -- Server version 3.23.54
  1698.  
  1699.    The invalid part of the code is the horizontal line made of dashes that a   ppears once in every dump created with mysqldump. If you want to run you   r dump you have to turn it into valid MySQL. This means, you have to add    a whitespace after the first two dashes of the line or add a # before i   t:
  1700.    -- -------------------------------------------------------
  1701.    or
  1702.    #---------------------------------------------------------
  1703.  
  1704.     [3.5] When using nested folders ($cfg['LeftFrameTableSeparator']) there are
  1705.     some multiple hierarchies displayed in a wrong manner?!
  1706.  
  1707.    Please note that you should not use the separating string multiple times   without any characters between them, or at the beginning/end of your tab   le name. If you have to, think about using another TableSeparator or dis   abling that feature
  1708.  
  1709.     [3.6] What is currently not supported in phpMyAdmin about InnoDB?
  1710.  
  1711.    In Relation view, being able to choose a table in another database, or ha   ving more than one index field in the foreign key.
  1712.    In Query-by-example (Query), automatic generation of the query LEFT JOIN   from the foreign table.
  1713.    In PDF schema editing, automatic layout.
  1714.  
  1715.     [3.7] I have table with many (100+) fields and when I try to browse table I
  1716.     get series of errors like "Warning: unable to parse url". How can this be
  1717.     fixed?
  1718.  
  1719.    Your table neither have a primary key nor an unique one, so we must use a    long expression to identify this row. This causes problems to parse_url    function. The workaround is to create a primary or unique key.
  1720.  
  1721.     [3.8] I cannot use (clickable) HTML-forms in fields where I put a
  1722.     MIME-Transformation onto!
  1723.  
  1724.    Due to a surrounding form-container (for multi-row delete checkboxes), no    nested forms can be put inside the table where phpMyAdmin displays the   results. You can, however, use any form inside of a table if keep the pa   rent form-container with the target to tbl_row_delete.php and just put y   our own input-elements inside. If you use a custom submit input field, t   he form will submit itself to the displaying page again, where you can v   alidate the $HTTP_POST_VARS in a transformation. For a tutorial on how t   o effectively use transformations, see our Link section on the official   phpMyAdmin-homepage.
  1725.  
  1726.     [3.9] I get error messages when using "--sql_mode=ANSI" for the MySQL
  1727.     server
  1728.  
  1729.    When MySQL is running in ANSI-compatibility mode, there are some major di   fferences in how SQL is structured (see http://dev.mysql.com/doc/mysql/e   n/ANSI_mode.html). Most important of all, the quote-character (") is int   erpreted as an identifier quote character and not as a string quote char   acter, which makes many internal phpMyAdmin operations into invalid SQL   statements. There is no workaround to this behaviour. News to this item   will be posted in Bug report #816858
  1730.  
  1731.     [3.10] Homonyms and no primary key: When the results of a SELECT display
  1732.     more that one column with the same value (for example SELECT lastname from
  1733.     employees where firstname like 'A%' and two "Smith" values are displayed),
  1734.     if I click Edit I cannot be sure that I am editing the intended row.
  1735.  
  1736.    Please make sure that your table has a primary key, so that phpMyAdmin ca   n use it for the Edit and Delete links.
  1737.  
  1738.     [3.11] The number of records for InnoDB tables is not correct.
  1739.  
  1740.    phpMyAdmin uses a quick method to get the row count, and this method only    returns an approximate count in the case of InnoDB tables. See $cfg['Ma   xExactCount'] for a way to modify those results, but this could have a s   erious impact on performance.
  1741.  
  1742.     [3.12] What are the phpMyAdmin limitations for MySQL 3?
  1743.  
  1744.    The number of records in queries containing COUNT and GROUP BY is not cor   rectly calculated. Also, sorting results of a query like "SELECT * from   table GROUP BY" ... is problematic.
  1745.  
  1746.   [4. ISPs, multi-user installations ]
  1747.  
  1748.     [4.1] I'm an ISP. Can I setup one central copy of phpMyAdmin or do I need
  1749.     to install it for each customer.
  1750.  
  1751.    Since version 2.0.3, you can setup a central copy of phpMyAdmin for all y   our users. The development of this feature was kindly sponsored by NetCo   logne GmbH. This requires a properly setup MySQL user management and php   MyAdmin HTTP or cookie authentication. See the install section on "Using    HTTP authentication".
  1752.  
  1753.     [4.2] What's the preferred way of making phpMyAdmin secure against evil
  1754.     access.
  1755.  
  1756.    This depends on your system.
  1757.    If you're running a server which cannot be accessed by other people, it's    sufficient to use the directory protection bundled with your webserver   (with Apache you can use .htaccess files, for example).
  1758.    If other people have telnet access to your server, you should use phpMyAd   min's HTTP authentication feature.
  1759.    Suggestions:
  1760.      * Your config.inc.php file should be chmod 660.
  1761.      * All your phpMyAdmin files should be chown -R phpmy.apache, where phpm       y is a user whose password is only known to you, and apache is the
  1762.        group under which Apache runs.
  1763.      * You should use PHP safe mode, to protect from other users that try to        include your config.inc.php in their scripts.
  1764.  
  1765.     [4.3] I get errors about not being able to include a file in /lang or in
  1766.     /libraries.
  1767.  
  1768.    Check php.ini, or ask your sysadmin to check it. The include_path must co   ntain "." somewhere in it, and open_basedir, if used, must contain "." a   nd "./lang" to allow normal operation of phpMyAdmin.
  1769.  
  1770.     [4.4] phpMyAdmin always gives "Access denied" when using HTTP
  1771.     authentication.
  1772.  
  1773.    This could happen for several reasons:
  1774.      * $cfg['Servers'][$i]['controluser'] and/or $cfg['Servers'][$i]['contro       lpass'] are wrong.
  1775.      * The username/password you specify in the login-dialog are invalid.
  1776.      * You have already setup a security mechanism for the phpMyAdmin-direct       ory, eg. a .htaccess file. This would interfere with phpMyAdmin's
  1777.        authentication, so remove it.
  1778.  
  1779.     [4.5] Is it possible to let users create their own databases?
  1780.  
  1781.    Starting with 2.2.5, in the user management page, you can enter a wildcar   d database name for a user (for example "joe%"), and put the privileges   you want. For example, adding SELECT, INSERT, UPDATE, DELETE, CREATE, DR   OP, INDEX, ALTER would let a user create/manage his/her database(s).
  1782.  
  1783.     [4.6] How can I use the Host-based authentication additions?
  1784.  
  1785.    If you have existing rules from an old .htaccess file, you can take them   and add a username between the 'deny'/'allow' and 'from' strings. Using   the username wildcard of '%' would be a major benefit here if your insta   llation is suited to using it. Then you can just add those updated lines    into the $cfg['Servers'][$i]['AllowDeny']['rules'] array.
  1786.    If you want a pre-made sample, you can try this fragment. It stops the 'r   oot' user from logging in from any networks other than the private netwo   rk IP blocks.
  1787.        //block root from logging in except from the private networks
  1788.        $cfg['Servers'][$i]['AllowDeny']['order'] = 'deny,allow';
  1789.        $cfg['Servers'][$i]['AllowDeny']['rules'] = array(
  1790.            'deny root from all',
  1791.            'allow root from localhost',
  1792.            'allow root from 10.0.0.0/8',
  1793.            'allow root from 192.168.0.0/16',
  1794.            'allow root from 172.16.0.0/12',
  1795.            );
  1796.  
  1797.     [4.7] Authentication window is displayed more than once, why?
  1798.  
  1799.    This happens if you are using a URL to start phpMyAdmin which is differen   t than the one set in your $cfg['PmaAbsoluteUri']. For example, a missin   g "www", or entering with an IP address while a domain name is defined i   n the config file.
  1800.  
  1801.   [5. Browsers or client OS]
  1802.  
  1803.     [5.1] I get an out of memory error, and my controls are non-functional,
  1804.     when trying to create a table with more than 14 fields.
  1805.  
  1806.    We could reproduce this problem only under Win98/98SE. Testing under WinN   T4 or Win2K, we could easily create more than 60 fields.
  1807.    A workaround is to create a smaller number of fields, then come back to y   our table properties and add the other fields.
  1808.  
  1809.     [5.2] With Xitami 2.5b4, phpMyAdmin won't process form fields.
  1810.  
  1811.    This is not a phpMyAdmin problem but a Xitami known bug: you'll face it w   ith each script/website that use forms.
  1812.    Upgrade or downgrade your Xitami server.
  1813.  
  1814.     [5.3] I have problems dumping tables with Konqueror (phpMyAdmin 2.2.2).
  1815.  
  1816.    With Konqueror 2.1.1: plain dumps, zip and GZip dumps work ok, except tha   t the proposed file name for the dump is always 'tbl_dump.php'. Bzip2 du   mps don't seem to work.
  1817.    With Konqueror 2.2.1: plain dumps work; zip dumps are placed into the use   r's temporary directory, so they must be moved before closing Konqueror,    or else they disappear. GZip dumps give an error message.
  1818.    Testing needs to be done for Konqueror 2.2.2.
  1819.  
  1820.     [5.4] I can't use the cookie authentication mode because Internet Explorer
  1821.     never stores the cookies.
  1822.  
  1823.    MS Internet Explorer seems to be really buggy about cookies, at least til   l version 6. And thanks to Andrew Zivolup we've traced also a PHP 4.1.1   bug in this area!
  1824.    Then, if you're running PHP 4.1.1, try to upgrade or downgrade... it may   work!
  1825.  
  1826.     [5.5] In Internet Explorer 5.0, I get JavaScript errors when browsing my
  1827.     rows.
  1828.  
  1829.    Upgrade to at least Internet Explorer 5.5 SP2.
  1830.  
  1831.     [5.6] In Internet Explorer 5.0, 5.5 or 6.0, I get an error (like "Page not
  1832.     found") when trying to modify a row in a table with many fields, or with a
  1833.     text field
  1834.  
  1835.    Your table neither have a primary key nor an unique one, so we must use a    long URL to identify this row. There is a limit on the length of the UR   L in those browsers, and this not happen in Netscape, for example. The w   orkaround is to create a primary or unique key, or use another browser.
  1836.  
  1837.     [5.7] I refresh (reload) my browser, and come back to the welcome page.
  1838.  
  1839.    Some browsers support right-clicking into the frame you want to refresh,   just do this in the right frame.
  1840.  
  1841.     [5.8] With Mozilla 0.9.7 I have problems sending a query modified in the
  1842.     query box.
  1843.  
  1844.    Looks like a Mozilla bug: 0.9.6 was OK. We will keep an eye on future Moz   illa versions.
  1845.  
  1846.     [5.9] With Mozilla 0.9.? to 1.0 and Netscape 7.0-PR1 I can't type a
  1847.     whitespace in the SQL-Query edit area: the page scrolls down.
  1848.  
  1849.    This is a Mozilla bug (see bug #26882 at BugZilla).
  1850.  
  1851.     [5.10] With Netscape 4.75 I get empty rows between each row of data in a
  1852.     CSV exported file.
  1853.  
  1854.    This is a known Netscape 4.75 bug: it adds some line feeds when exporting    data in octet-stream mode. Since we can't detect the specific Netscape   version, we cannot workaround this bug.
  1855.  
  1856.     [5.11] Extended-ASCII characters like German umlauts are displayed wrong.
  1857.  
  1858.    Please ensure that you have set your browser's character set to the one o   f the language file you have selected on phpMyAdmin's start page. Altern   atively, you can try the auto detection mode that is supported by the re   cent versions of the most browsers.
  1859.  
  1860.     [5.12] Apple OS X: Safari browser changes special characters to "?".
  1861.  
  1862.    This issue has been reported by a OS X user, who adds that Chimera, Netsc   ape and Mozilla do not have this problem.
  1863.  
  1864.     [5.13] With Internet Explorer 5.5 or 6, and HTTP authentication type, I
  1865.     cannot manage two servers: I login to the first one, then the other one,
  1866.     but if I switch back to the first, I have to login on each operation.
  1867.  
  1868.    This is a bug in Internet Explorer, other browsers do not behave this way   .
  1869.  
  1870.     [5.14] Using Opera6, I can manage to get to the authentication, but nothing
  1871.     happens after that, only a blank screen.
  1872.  
  1873.    Having $cfg['QueryFrameJS'] set to TRUE, this leads to a bug in Opera6, b   ecause it is not able to interpret frameset definitiions written by Java   Script. Please upgrade to Opera7 at least.
  1874.  
  1875.     [5.15] I have display problems with Safari.
  1876.  
  1877.    Please upgrade to at least version 1.2.3.
  1878.  
  1879.     [5.16] With Internet Explorer, I get "Access is denied" Javascript errors.
  1880.     Or I cannot make phpMyAdmin work under Windows.
  1881.  
  1882.    Please check the following points:
  1883.      * Maybe you have defined your PmaAbsoluteUri setting in config.inc.php       to an IP address and you are starting phpMyAdmin with a URL containing
  1884.        a domain name, or the reverse situation.
  1885.      * Security settings in IE and/or Microsoft Security Center are too high       , thus blocking scripts execution.
  1886.      * The Windows Firewall is blocking Apache and MySQL. You must allow htt       p ports (80 or 443) and MySQL port (usually 3306) in the "in" and "out"
  1887.        directions.
  1888.  
  1889.     [5.17] With Firefox, I cannot delete rows of data or drop a database.
  1890.  
  1891.    Many users have confirmed that the Tabbrowser Extensions plugin they inst   alled in their Firefox is causing the problem.
  1892.  
  1893.   [6. Using phpMyAdmin]
  1894.  
  1895.     [6.1] I can't insert new rows into a table / I can't create a table - MySQL
  1896.     brings up a SQL-error.
  1897.  
  1898.    Examine the SQL error with care. Often the problem is caused by specifyin   g a wrong field-type.
  1899.    Common errors include:
  1900.      * Using VARCHAR without a size argument
  1901.      * Using TEXT or BLOB with a size argument
  1902.  
  1903.    Also, look at the syntax chapter in the MySQL manual to confirm that your    syntax is correct.
  1904.  
  1905.     [6.2] When I create a table, I click the Index checkbox for 2 fields and
  1906.     phpMyAdmin generates only one index with those 2 fields.
  1907.  
  1908.    In phpMyAdmin 2.2.0 and 2.2.1, this is the way to create a multi-fields i   ndex. If you want two indexes, create the first one when creating the ta   ble, save, then display the table properties and click the Index link to    create the other index.
  1909.  
  1910.     [6.3] How can I insert a null value into my table?
  1911.  
  1912.    Since version 2.2.3, you have a checkbox for each field that can be null.    Before 2.2.3, you had to enter "null", without the quotes, as the field   's value. Since version 2.5.5, you have to use the checkbox to get a rea   l NULL value, so if you enter "NULL" this means you want a literal NULL   in the field, and not a NULL value (this works in PHP4).
  1913.  
  1914.     [6.4] How can I backup my database or table?
  1915.  
  1916.    Click on a database or table name in the left frame, the properties will   be displayed. Then on the menu, click "Export", you can dump the structu   re, the data, or both. This will generate standard SQL statements that c   an be used to recreate your database/table.
  1917.    You will need to choose "Save as file", so that phpMyAdmin can transmit t   he resulting dump to your station. Depending on your PHP configuration,   you will see options to compress the dump. See also the $cfg['ExecTimeLi   mit'] configuration variable.
  1918.    For additional help on this subject, look for the word "dump" in this doc   ument.
  1919.  
  1920.     [6.5] How can I restore (upload) my database or table using a dump? How can
  1921.     I run a ".sql" file.
  1922.  
  1923.    Click on a database name in the left frame, the properties will be local   displayed. Then in the "Run SQL query" section, type in your dump filena   me, or use the Browse button. Then click Go.
  1924.    For additional help on this subject, look for the word "upload" in this d   ocument.
  1925.  
  1926.     [6.6] How can I use the relation table in Query-by-example?
  1927.  
  1928.    Here is an example with the tables persons, towns and countries, all loca   ted in the database mydb. If you don't have a pma_relation table, create    it as explained in the configuration section. Then create the example t   ables:
  1929.         CREATE TABLE REL_countries (
  1930.           country_code char(1) NOT NULL default '',
  1931.           description varchar(10) NOT NULL default '',
  1932.           PRIMARY KEY (country_code)
  1933.         ) TYPE=MyISAM;
  1934.         INSERT INTO REL_countries VALUES ('C', 'Canada');
  1935.         CREATE TABLE REL_persons (
  1936.           id tinyint(4) NOT NULL auto_increment,
  1937.           person_name varchar(32) NOT NULL default '',
  1938.           town_code varchar(5) default '0',
  1939.           country_code char(1) NOT NULL default '',
  1940.           PRIMARY KEY (id)
  1941.         ) TYPE=MyISAM;
  1942.         INSERT INTO REL_persons VALUES (11, 'Marc', 'S', '');
  1943.         INSERT INTO REL_persons VALUES (15, 'Paul', 'S', 'C');
  1944.         CREATE TABLE REL_towns (
  1945.           town_code varchar(5) NOT NULL default '0',
  1946.           description varchar(30) NOT NULL default '',
  1947.           PRIMARY KEY (town_code)
  1948.         ) TYPE=MyISAM;
  1949.         INSERT INTO REL_towns VALUES ('S', 'Sherbrooke');
  1950.         INSERT INTO REL_towns VALUES ('M', 'Montr├⌐al');
  1951.    To setup appropriate links and display information:
  1952.      * on table "REL_persons" click Structure, then Relation view
  1953.      * in Links, for "town_code" choose "REL_towns->code"
  1954.      * in Links, for "country_code" choose "REL_countries->country_code"
  1955.      * on table "REL_towns" click Structure, then Relation view
  1956.      * in "Choose field to display", choose "description"
  1957.      * repeat the two previous steps for table "REL_countries"
  1958.  
  1959.    Then test like this:
  1960.      * Click on your db name in the left frame
  1961.      * Choose "Query"
  1962.      * Use tables: persons, towns, countries
  1963.      * Click "Update query"
  1964.      * In the fields row, choose persons.person_name and click the "Show" ti       ckbox
  1965.      * Do the same for towns.description and countries.descriptions in the o       ther 2 columns
  1966.      * Click "Update query" and you will see in the query box that the corre       ct joins have been generated
  1967.      * Click "Submit query"
  1968.  
  1969.     [6.7] How can I use the "display field" feature?
  1970.  
  1971.    Starting from the previous example, create the pma_table_info as explaine   d in the configuration section, then browse your persons table, and move    the mouse over a town code or country code.
  1972.    See also FAQ 6.21 for an additionnal feature that "display field" enables   : drop-down list of possible values.
  1973.  
  1974.     [6.8] How can I produce a PDF schema of my database?
  1975.  
  1976.    First the configuration variables "relation", "table_coords" and "pdf_pag   es" have to be filled in.
  1977.    Then you need to think about your schema layout. Which tables will go on   which pages?
  1978.      * Select your database in the left frame.
  1979.      * Choose "Operations" in the navigation bar at the top.
  1980.      * Choose "Edit PDF Pages" near the bottom of the page.
  1981.      * Enter a name for the first PDF page and click Go. If you like, you ca       n use the "automatic layout," which will put all your linked tables
  1982.        onto the new page.
  1983.      * Select the name of the new page (the action choice being set to Edit)        and click Go.
  1984.      * Select a table from the list, enter its coordinates and click Go.
  1985.        Coordinates are relative; your diagram will be automatically scaled to
  1986.        fit the page. When initially placing tables on the page, just pick any
  1987.        coordinates -- say, 50x50. After clicking Go, you can then use the
  1988.        graphical editor to position the element correctly.
  1989.      * When you'd like to look at your PDF, first be sure to click the Go bu       tton beneath the list of tables and coordinates, to save any changes
  1990.        you made there. Then scroll all the way down, select the PDF options you
  1991.        want, and click Go.
  1992.      * Internet Explorer for Windows may suggest an incorrect filename when       you try to save a generated PDF. When saving a generated PDF, be sure
  1993.        that the filename ends in ".pdf", for example "schema.pdf". Browsers on
  1994.        other operating systems, and other browsers on Windows, do not have this
  1995.        problem.
  1996.  
  1997.     [6.9] phpMyAdmin is changing the type of one of my columns!
  1998.  
  1999.    No, it's MySQL that is doing silent column type changing.
  2000.  
  2001.     [6.10] When creating a privilege, what happens with underscores in the
  2002.     database name?
  2003.  
  2004.    If you do not put a backslash before the underscore, this is a wildcard g   rant, and the underscore means "any character". So, if the database name    is "john_db", the user would get rights to john1db, john2db...
  2005.    If you put a backslash before the underscore, it means that the database   name will have a real underscore.
  2006.  
  2007.     [6.11] What is the curious symbol ├╕ in the statistics pages?
  2008.  
  2009.    It means "average".
  2010.  
  2011.     [6.12] I want to understand some Export options.
  2012.  
  2013.    Structure:
  2014.      * "Add DROP TABLE" will add a line telling MySQL to drop the table, if       it already exists during the import. It does NOT drop the table after
  2015.        your export, it only affects the import file.
  2016.      * "If Not Exists" will only create the table if it doesn't exist. Other       wise, you may get an error if the table name exists but has a different
  2017.        structure.
  2018.      * "Add AUTO_INCREMENT value" ensures that AUTO_INCREMENT value (if any)        will be included in backup.
  2019.      * "Enclose table and field names with backquotes" ensures that field an       d table names formed with special characters are protected.
  2020.      * "Add into comments" includes column comments, relations, and MIME typ       es set in the pmadb in the dump as SQL comments (/* xxx */).
  2021.  
  2022.    Data:
  2023.      * "Complete inserts" adds the column names on every INSERT command, for        better documentation (but resulting file is bigger).
  2024.      * "Extended inserts" provides a shorter dump file by using only once th       e INSERT verb and the table name.
  2025.      * "Delayed inserts" are best explained in the MySQL manual.
  2026.      * "Ignore inserts" treats errors as a warning instead. Again, more info        is provided in the MySQL manual, but basically with this selected,
  2027.        invalid values are adjusted and inserted rather than causing the entire
  2028.        statement to fail.
  2029.  
  2030.     [6.13] I would like to create a database with a dot in its name.
  2031.  
  2032.    This is a bad idea, because in MySQL the syntax "database.table" is the n   ormal way to reference a database and table name. Worse, MySQL will usua   lly let you create a database with a dot, but then you cannot work with   it, nor delete it.
  2033.  
  2034.     [6.14] How do I set up the SQL Validator?
  2035.  
  2036.    To use it, you need a very recent version of PHP, 4.3.0 recommended, with    XML, PCRE and PEAR support. On your system command line, run "pear inst   all Net_Socket Net_URL HTTP_Request Mail_Mime Net_DIME SOAP" to get the   necessary PEAR modules for usage.
  2037.    On a more recent pear version, I had problems with the state of Net_DIME   being beta, so this single command "pear -d preferred_state=beta install    -a SOAP" installed all the needed modules.
  2038.    If you use the Validator, you should be aware that any SQL statement you   submit will be stored anonymously (database/table/column names, strings,    numbers replaced with generic values). The Mimer SQL Validator itself,   is ┬⌐ 2001 Upright Database Technology. We utilize it as free SOAP servic   e.
  2039.  
  2040.     [6.15] I want to add a BLOB field and put an index on it, but MySQL says
  2041.     "BLOB column '...' used in key specification without a key length".
  2042.  
  2043.    The right way to do this, is to create the field without any indexes, the   n display the table structure and use the "Create an index" dialog. On t   his page, you will be able to choose your BLOB field, and set a size to   the index, which is the condition to create an index on a BLOB field.
  2044.  
  2045.     [6.16] How can I simply move in page with plenty editing fields?
  2046.  
  2047.    You can use Ctrl+arrows (Option+Arrows in Safari) for moving on most page   s with many editing fields (table structure changes, row editing, etc.)   (must be enabled in configuration - see. $cfg['CtrlArrowsMoving']). You   can also have a look at the directive $cfg['DefaultPropDisplay'] ('verti   cal') and see if this eases up editing for you.
  2048.  
  2049.     [6.17] Transformations: I can't enter my own mimetype! WTF is this feature
  2050.     then useful for?
  2051.  
  2052.    Slow down :). Defining mimetypes is of no use, if you can't put transform   ations on them. Otherwise you could just put a comment on the field. Bec   ause entering your own mimetype will cause serious syntax checking issue   s and validation, this introduces a high-risk false-user-input situation   . Instead you have to initialize mimetypes using functions or empty mime   type definitions.
  2053.    Plus, you have a whole overview of available mimetypes. Who knows all tho   se mimetypes by heart so he/she can enter it at will?
  2054.  
  2055.     [6.18] Bookmarks: Where can I store bookmarks? Why can't I see any
  2056.     bookmarks below the query box? What is this variable for?
  2057.  
  2058.    Any query you have executed can be stored as a bookmark on the page where    the results are displayed. You will find a button labeled 'Bookmark thi   s query' just at the end of the page.
  2059.    As soon as you have stored a bookmark, it is related to the database you   run the query on. You can now access a bookmark dropdown on each page, t   he query box appears on for that database.
  2060.    Since phpMyAdmin 2.5.0 you are also able to store variables for the bookm   arks. Just use the string /*[VARIABLE]*/ anywhere in your query. Everyth   ing which is put into the value input box on the query box page will rep   lace the string "/*[VARIABLE]*/" in your stored query. Just be aware of   that you HAVE to create a valid query, otherwise your query won't be eve   n able to be stored in the database.
  2061.    Also remember, that everything else inside the /*[VARIABLE]*/ string for   your query will remain the way it is, but will be stripped of the /**/ c   hars. So you can use:
  2062.    /*, [VARIABLE] AS myname */
  2063.    which will be expanded to
  2064.    , VARIABLE as myname
  2065.    in your query, where VARIABLE is the string you entered in the input box.    If an empty string is provided, no replacements are made.
  2066.    A more complex example. Say you have stored this query:
  2067.    SELECT Name, Address FROM addresses WHERE 1 /* AND Name LIKE '%[VARIABLE]   %' */
  2068.    Say, you now enter "phpMyAdmin" as the variable for the stored query, the    full query will be:
  2069.    SELECT Name, Address FROM addresses WHERE 1 AND Name LIKE '%phpMyAdmin%'
  2070.    You can use multiple occurences of /*[VARIABLE]*/ in a single query.
  2071.    NOTE THE ABSENCE OF SPACES inside the "/**/" construct. Any spaces insert   ed there will be later also inserted as spaces in your query and may lea   d to unexpected results especially when using the variable expansion ins   ide of a "LIKE ''" expression.
  2072.    Your initial query which is going to be stored as a bookmark has to yield    at least one result row so you can store the bookmark. You may have tha   t to work around using well positioned "/**/" comments.
  2073.  
  2074.     [6.19] How can I create simple LaTeX document to include exported table?
  2075.  
  2076.    You can simply include table in your LaTeX documents, minimal sample docu   ment should look like following one (assuming you have table exported in    file table.tex):
  2077. \documentclass{article} % or any class you want
  2078. \usepackage{longtable}  % for displaying table
  2079. \begin{document}        % start of document
  2080. \include{table}         % including exported table
  2081. \end{document}          % end of document
  2082.  
  2083.     [6.20] In MySQL 4, I see a lot of databases which are not mine, and cannot
  2084.     access them.
  2085.  
  2086.    Upgrading to MySQL 4 usually gives users those global privileges: CREATE   TEMPORARY TABLES, SHOW DATABASES, LOCK TABLES. Those privileges also ena   bles users to see all the database names, until you upgrade the grant ta   bles as described in the MySQL manual. See this bug report.
  2087.    So if your users do not need those privileges, you can remove them and th   eir databases list will shorten.
  2088.  
  2089.     [6.21] In edit/insert mode, how can I see a list of possible values for a
  2090.     field, based on some foreign table?
  2091.  
  2092.    You have to setup appropriate links between the tables, and also setup th   e "display field" in the foreign table. See FAQ 6.6 for an example. Then   , if there are 200 values or less in the foreign table, a drop-down list    of values will be available. You will see two lists of values, the firs   t list containing the key and the display field, the second list contain   ing the display field and the key. The reason for this is to be able to   type the first letter of either the key or the display field.
  2093.    For 200 values or more, a distinct window will appear, to browse foreign   key values and choose one.
  2094.  
  2095.     [6.22] Bookmarks: Can I execute a default bookmark automatically when
  2096.     entering Browse mode for a table?
  2097.  
  2098.    Yes. If a bookmark has the same label as a table name, it will be execute   d.
  2099.  
  2100.     [6.23] Export: I heard phpMyAdmin can export Microsoft Excel files, how can
  2101.     I enable that?
  2102.  
  2103.    Current version does support direct export ot Microsoft Excel and Word ve   rsions 2000 and newer. If you need export older versions, you can use CS   V suitable for Microsoft Excel, which works out of the box or you can tr   y native experimental MS Excel exporter. This export has several problem   s, most important are limitation of cell content to 255 chars and no sup   port for charsets, so think carefully whether you want to enable this..   For enabling this you need to set $cfg['TempDir'] to place where web ser   ver user can write (for example './tmp') and install PEAR module Spreads   heet_Excel_Writer into php include path. The installation can be done by    following command:
  2104.     pear -d preferred_state=beta install -a Spreadsheet_Excel_Writer
  2105.  
  2106.    First part of switches set we want to install beta version of that module    (no stable version available yet) and then we tell pear we want to sati   sfy dependencies.
  2107.  
  2108.    If you are running in PHP safe mode, you will have to set in php.ini the   safe_mode_include_dir to the directory where your PEAR modules are locat   ed, for example:
  2109.     safe_mode_include_dir = /usr/local/lib/php
  2110.  
  2111.    To create the temporary directory on a UNIX-based system, you can do:
  2112.     cd phpMyAdmin
  2113.     mkdir tmp
  2114.     chmod o+rwx tmp
  2115.  
  2116.     [6.24] Now that phpMyAdmin supports native MySQL 4.1.x column comments,
  2117.     what happens to my column comments stored in pmadb?
  2118.  
  2119.    Automatic migration of a table's pmadb-style column comments to the nativ   e ones is done whenever you enter Structure page for this table.
  2120.  
  2121.   [7. phpMyAdmin project]
  2122.  
  2123.     [7.1] I have found a bug. How do I inform developers?
  2124.  
  2125.    Our Bug Tracker is located at http://sourceforge.net/projects/phpmyadmin/    under the Bugs section.
  2126.    But please first discuss your bug with other users:
  2127.    http://sourceforge.net/projects/phpmyadmin/ (and choose Forums)
  2128.  
  2129.     [7.2] I want to translate the messages to a new language or upgrade an
  2130.     existing language, where do I start?
  2131.  
  2132.    Always use the current CVS version of your language file. For a new langu   age, start from english-iso-8859-1.inc.php. If you don't know how to get    the CVS version, please ask one of the developers.
  2133.    Please note that we try not to use HTML entities like é in the tra   nslations, since we define the right character set in the file. With HTM   L entities, the text on JavaScript messages would not display correctly.    However there are some entities that need to be there, for quotes ,non-   breakable spaces, ampersands, less than, greater than.
  2134.    You can then put your translations, as a zip file to avoid losing special    characters, on the sourceforge.net translation tracker.
  2135.    It would be a good idea to subscribe to the phpmyadmin-translators mailin   g list, because this is where we ask for translations of new messages.
  2136.  
  2137.     [7.3] I would like to help out with the development of phpMyAdmin. How
  2138.     should I proceed?
  2139.  
  2140.    The following method is preferred for new developers:
  2141.     1. fetch the current CVS tree over anonymous CVS:
  2142.        cvs
  2143.        -d:pserver:anonymous@cvs.phpmyadmin.sourceforge.net:/cvsroot/phpmyadmin
  2144.        login
  2145.        [Password: simply press the Enter key]
  2146.        cvs -z3
  2147.        -d:pserver:anonymous@cvs.phpmyadmin.sourceforge.net:/cvsroot/phpmyadmin
  2148.        checkout phpMyAdmin
  2149.        [This will create a new sub-directory named phpMyAdmin]
  2150.     2. add your stuff
  2151.     3. put the modified files (tar'ed and gzip'ed) inside the patch tracker       of the phpMyAdmin SourceForge account.
  2152.  
  2153.    Write access to the CVS tree is granted only to experienced developers wh   o have already contributed something useful to phpMyAdmin.
  2154.    Also, have a look at the Developers section.
  2155.  
  2156.   [8. Security ]
  2157.  
  2158.     [8.1] Security alert, dated 2003-06-18.
  2159.  
  2160.    Last update of this FAQ: 2003-07-22.
  2161.    The phpMyAdmin development team received notice of this security alert: h   ttp://www.securityfocus.com/archive/1/325641.
  2162.    The team regrets that the author did not communicate with us before sendi   ng this alert. However, here is our current reply to the points mentionn   ed:
  2163.      * "Directory transversal attack"
  2164.        This problem had been fixed in version 2.5.0, even if the author reports
  2165.        the  2.5.2  development  version as vulnerable, which we could not
  2166.        reproduce.
  2167.      * "Remote local file retrieving"
  2168.        This is a misleading title, as the author tells in his text: "Note that
  2169.        you can't request files ( only dirs )".
  2170.      * "Remote internal directory listing"
  2171.        It was possible to retrieve the list of phpMyAdmin's directory (which we
  2172.        doubt can cause any damage), but we fixed this in the 2.5.2 version.
  2173.      * "XSS and Path disclosures"
  2174.        Most of the XSS problems have been fixed in version 2.5.0. The rest have
  2175.        been fixed in the 2.5.2 version.
  2176.        We believe that the Path disclosures problems have also been fixed in
  2177.        version 2.5.2.
  2178.      * "Information encoding weakness"
  2179.        We believe that an exploit for this weakness would be difficult to
  2180.        achieve.  However version 2.5.2 now encrypts the password with the
  2181.        well-known blowfish algorithm.
  2182.  
  2183.     [8.2] Security alert, dated 2004-06-29.
  2184.  
  2185.    Last update of this FAQ: 2004-06-30.
  2186.    The phpMyAdmin development team received notice of this security alert: h   ttp://securityfocus.com/archive/1/367486/2004-06-26/2004-07-02/0
  2187.    We would like to put emphasis on the disappointment we feel when a bugrep   orter does not contact the authors of a software first, before posting a   ny exploits. The common way to report this, is to give the developers a   reasonable amount of time to respond to an exploit before it is made pub   lic.
  2188.    We acknowledge that phpMyAdmin versions 2.5.1 to 2.5.7 are vulnerable to   this problem, if each of the following conditions are met:
  2189.      * The Web server hosting phpMyAdmin is not running in safe mode.
  2190.      * In config.inc.php, $cfg['LeftFrameLight'] is set to FALSE (the defaul       t value of this parameter is TRUE).
  2191.      * There is no firewall blocking requests from the Web server to the att       acking host.
  2192.  
  2193.    Version 2.5.7-pl1 was released with a fix for this vulnerability.
  2194.  
  2195.     [8.3] About new security alerts
  2196.  
  2197.    Please refer to http://www.phpmyadmin.net for the complete list of securi   ty alerts.
  2198.  
  2199. Developers Information
  2200.  
  2201.    phpMyAdmin is Open Source, so you're invited to contribute to it. Many gr   eat features have been written by other people and you too can help to m   ake phpMyAdmin a useful tool.
  2202.  
  2203.    If you're planning to contribute source, please read the following inform   ation:
  2204.      * All files include header.inc.php (layout), libraries/common.lib.php (       common functions) and config.inc.php.
  2205.        Only configuration data should go in config.inc.php. Please keep it free
  2206.        from other code.
  2207.        Commonly used functions should be added to libraries/common.lib.php and
  2208.        more  specific  ones may be added within a library stored into the
  2209.        libraries sub-directory.
  2210.      * Obviously, you're free to use whatever coding style you want. But ple       ase try to keep your code as simple as possible: beginners are using
  2211.        phpMyAdmin as an example application.
  2212.        As  far  as  possible, we want the scripts to be XHTML1.0 and CSS2
  2213.        compliant on one hand, they fit the PEAR coding standards on the other
  2214.        hand. Please pay attention to this.
  2215.      * Please try to keep up the file-naming conventions. Table-related stuf       f goes to tbl_*.php, db-related code to db_*.php, server-related tools
  2216.        to server_*.php and so on.
  2217.      * Please don't use verbose strings in your code, instead add the string        (at least) to english-iso-8859-1.inc.php and print() it out.
  2218.      * If you want to be really helpful, write an entry for the ChangeLog.
  2219.      * The DBG extension (PHP Debugger DBG) is now supported by phpMyAdmin f       or developers to better debug and profile their code.
  2220.        Please see the $cfg['DBG']* configuration options for more information.
  2221.        This is in memoriam of the Space Shuttle Columbia (STS-107) which was
  2222.        lost during its re-entry into Earth's atmosphere and in memory of the
  2223.        brave men and women who gave their lives for the people of Earth.
  2224.  
  2225. Credits
  2226.  
  2227.  
  2228. phpMyAdmin - Credits
  2229. ====================
  2230.  
  2231. CREDITS, in chronological order
  2232. -------------------------------
  2233.  
  2234. - Tobias Ratschiller <tobias_at_ratschiller.com>
  2235.     * creator of the phpmyadmin project
  2236.     * maintainer from 1998 to summer 2000
  2237.  
  2238. - Marc Delisle <DelislMa_at_CollegeSherbrooke.qc.ca>
  2239.     * multi-language version
  2240.     * various fixes and improvements
  2241.     * SQL analyser (most of it)
  2242.     * current project maintainer
  2243.  
  2244. - Olivier M├╝ller <om_at_omnis.ch>
  2245.     * started SourceForge phpMyAdmin project in March 2001
  2246.     * sync'ed different existing CVS trees with new features and bugfixes
  2247.     * multi-language improvements, dynamic language selection
  2248.     * current project maintainer
  2249.     * many bugfixes and improvements
  2250.  
  2251. - Lo├»c Chapeaux <lolo_at_phpheaven.net>
  2252.     * rewrote and optimized javascript, DHTML and DOM stuff
  2253.     * rewrote the scripts so they fit the PEAR coding standards and
  2254.       generate XHTML1.0 and CSS2 compliant codes
  2255.     * improved the language detection system
  2256.     * many bugfixes and improvements
  2257.  
  2258. - Robin Johnson <robbat2_at_users.sourceforge.net>
  2259.     * database maintenance controls
  2260.     * table type code
  2261.     * Host authentication IP Allow/Deny
  2262.     * DB-based configuration (Not completed)
  2263.     * SQL parser and pretty-printer
  2264.     * SQL validator
  2265.     * many bugfixes and improvements
  2266.  
  2267. - Armel Fauveau <armel.fauveau_at_globalis-ms.com>
  2268.     * bookmarks feature
  2269.     * multiple dump feature
  2270.     * gzip dump feature
  2271.     * zip dump feature
  2272.  
  2273. - Geert Lund <glund_at_silversoft.dk>
  2274.     * various fixes
  2275.     * moderator of the phpMyAdmin users forum at phpwizard.net
  2276.  
  2277. - Korakot Chaovavanich <korakot_at_iname.com>
  2278.     * "insert as new row" feature
  2279.  
  2280. - Pete Kelly <webmaster_at_trafficg.com>
  2281.     * rewrote and fix dump code
  2282.     * bugfixes
  2283.  
  2284. - Steve Alberty <alberty_at_neptunlabs.de>
  2285.     * rewrote dump code for PHP4
  2286.     * mySQL table statistics
  2287.     * bugfixes
  2288.  
  2289. - Benjamin Gandon <gandon_at_isia.cma.fr>
  2290.     * main author of the version 2.1.0.1
  2291.     * bugfixes
  2292.  
  2293. - Alexander M. Turek <me_at_derrabus.de>
  2294.     * MySQL 4.0 / 4.1 / 5.0 compatibility
  2295.     * abstract database interface (PMA_DBI) with MySQLi support
  2296.     * privileges administration
  2297.     * XML exports
  2298.     * various features and fixes
  2299.     * German language file updates
  2300.  
  2301. - Mike Beck <mike.beck_at_web.de>
  2302.     * automatic joins in QBE
  2303.     * links column in printview
  2304.     * Relation view
  2305.  
  2306. - Michal ─îiha┼Ö <michal_at_cihar.com>
  2307.     * enhanced index creation/display feature
  2308.     * feature to use a different charset for HTML than for MySQL
  2309.     * improvements of export feature
  2310.     * various features and fixes
  2311.     * Czech language file updates
  2312.  
  2313. - Christophe Gesch├⌐ from the "MySQL Form Generator for PHPMyAdmin"
  2314.   (http://sourceforge.net/projects/phpmysqlformgen/)
  2315.     * suggested the patch for multiple table printviews
  2316.  
  2317. - Garvin Hicking <me_at_supergarv.de>
  2318.     * built the patch for vertical display of table rows
  2319.     * built the Javascript based Query window + SQL history
  2320.     * Improvement of column/db comments
  2321.     * (MIME)-Transformations for columns
  2322.     * Use custom alias names for Databases in left frame
  2323.     * hierarchical/nested table display
  2324.     * PDF-scratchboard for WYSIWYG-distribution of PDF relations
  2325.     * new icon sets
  2326.     * vertical display of column properties page
  2327.     * some bugfixes, features, support, German language additions
  2328.  
  2329. - Yukihiro Kawada <kawada_at_den.fujifilm.co.jp>
  2330.     * japanese kanji encoding conversion feature
  2331.  
  2332. - Piotr Roszatycki <d3xter_at_users.sourceforge.net> and Dan Wilson
  2333.     * the Cookie authentication mode
  2334.  
  2335. - Axel Sander <n8falke_at_users.sourceforge.net>
  2336.     * table relation-links feature
  2337.  
  2338. - Maxime Delorme <delorme.maxime_at_free.fr>
  2339.     * PDF schema output, thanks also to Olivier Plathey for the
  2340.       "FPDF" library (see http://www.fpdf.org/) and Steven Wittens
  2341.       for the "UFPDF" library (see http://www.acko.net/node/56).
  2342.  
  2343. - Olof Edlund <olof.edlund_at_upright.se>
  2344.     * SQL validator server
  2345.  
  2346. - Ivan R. Lanin <ivanlanin_at_users.sourceforge.net>
  2347.     * phpMyAdmin logo (until June 2004)
  2348.  
  2349. - Mike Cochrane <mike_at_graftonhall.co.nz>
  2350.     * blowfish library from the Horde project
  2351.  
  2352. - Marcel Tschopp <ne0x_at_users.sourceforge.net>
  2353.     * mysqli support
  2354.     * many bugfixes and improvements
  2355.  
  2356. - Michael Keck <mkkeck_at_users.sourceforge.net>
  2357.     * redesign for 2.6.0
  2358.     * phpMyAdmin sailboat logo (June 2004)
  2359.  
  2360. - Mathias Landh├ñu├ƒer
  2361.     * Representation at conferences
  2362.  
  2363. And also to the following people who have contributed minor changes,
  2364. enhancements, bugfixes or support for a new language since version 2.1.0:
  2365.  
  2366. Bora Alioglu, Ricardo ?, Sven-Erik Andersen, Alessandro Astarita,
  2367. P├⌐ter Bakondy, Borges Botelho, Olivier Bussier, Neil Darlow,
  2368. Mats Engstrom, Ian Davidson, Laurent Dhima, Kristof Hamann, Thomas Kl├ñger,
  2369. Lubos Klokner, Martin Marconcini, Girish Nair, David Nordenberg, Andreas Pauley,
  2370. Bernard M. Piller, Laurent Haas, "Sakamoto", Yuval Sarna,
  2371. www.securereality.com.au, Alexis Soulard, Alvar Soome, Siu Sun, Peter Svec,
  2372. Michael Tacelosky, Rachim Tamsjadi, Kositer Uros,
  2373. Lu├¡s V., Martijn W. van der Lee,
  2374. Algis Vainauskas, Daniel Villanueva, Vinay, Ignacio Vazquez-Abrams, Chee Wai,
  2375. Jakub Wilk, Thomas Michael Winningham, Vilius Zigmantas, "Manuzhai".
  2376.  
  2377.  
  2378. Original Credits of Version 2.1.0
  2379. ---------------------------------
  2380.  
  2381.     This work is based on Peter Kuppelwieser's MySQL-Webadmin. It was his idea
  2382.     to create a web-based interface to MySQL using PHP3. Although I have not
  2383.     used any of his source-code, there are some concepts I've borrowed from
  2384.     him. phpMyAdmin was created because Peter told me he wasn't going to
  2385.     further develop his (great) tool.
  2386.     Thanks go to
  2387.     - Amalesh Kempf <ak-lsml_at_living-source.com> who contributed the
  2388.       code for the check when dropping a table or database. He also suggested
  2389.       that you should be able to specify the primary key on tbl_create.php3. To
  2390.       version 1.1.1 he contributed the ldi_*.php3-set (Import text-files) as
  2391.       well as a bug-report. Plus many smaller improvements.
  2392.     - Jan Legenhausen <jan_at_nrw.net>: He made many of the changes that
  2393.       were introduced in 1.3.0 (including quite significant ones like the
  2394.       authentication). For 1.4.1 he enhanced the table-dump feature. Plus
  2395.       bug-fixes and help.
  2396.     - Marc Delisle <DelislMa_at_CollegeSherbrooke.qc.ca> made phpMyAdmin
  2397.       language-independent by outsourcing the strings to a separate file. He
  2398.       also contributed the French translation.
  2399.     - Alexandr Bravo <abravo_at_hq.admiral.ru> who contributed
  2400.       tbl_select.php3, a feature to display only some fields from a table.
  2401.     - Chris Jackson <chrisj_at_ctel.net> added support for MySQL
  2402.       functions in tbl_change.php3. He also added the
  2403.       "Query by Example" feature in 2.0.
  2404.     - Dave Walton <walton_at_nordicdms.com> added support for multiple
  2405.       servers and is a regular contributor for bug-fixes.
  2406.     - Gabriel Ash <ga244_at_is8.nyu.edu> contributed the random access
  2407.       features for 2.0.6.
  2408.     The following people have contributed minor changes, enhancements, bugfixes
  2409.     or support for a new language:
  2410.     Jim Kraai, Jordi Bruguera, Miquel Obrador, Geert Lund, Thomas Kleemann,
  2411.     Alexander Leidinger, Kiko Albiol, Daniel C. Chao, Pavel Piankov,
  2412.     Sascha Kettler, Joe Pruett, Renato Lins, Mark Kronsbein, Jannis Hermanns,
  2413.     G. Wieggers.
  2414.  
  2415.     And thanks to everyone else who sent me email with suggestions, bug-reports
  2416.     and or just some feedback.
  2417.  
  2418.                                         Valid XHTML 1.0!      Valid CSS! 
  2419.